123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>lift-server</artifactId>
- <groupId>cn.com.ty</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>lift-system-service</artifactId>
- <dependencies>
- <dependency>
- <groupId>cn.com.xwy</groupId>
- <artifactId>xwy-spring-boot</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.com.xwy</groupId>
- <artifactId>xwy-cloud-dependencies</artifactId>
- </dependency>
- <!-- 添加公共模块依赖 -->
- <dependency>
- <groupId>cn.com.ty</groupId>
- <artifactId>lift-common</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>core</artifactId>
- <version>3.3.3</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.62</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.tencent</groupId>
- <artifactId>xinge-push</artifactId>
- <version>1.2.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>cn.com.ty.lift.system.SystemApplication</mainClass>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|