123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <modules>
- <module>lift-demo-service</module>
- <module>lift-business-service</module>
- <module>lift-enterprise-service</module>
- <module>lift-system-service</module>
- <module>lift-common</module>
- <module>lift-batch-service</module>
- <module>lift-quan-service</module>
- <module>lift-push</module>
- <module>lift-push-pc</module>
- <module>lift-iot</module>
- <module>lift-upload</module>
- <module>lift-ud-service</module>
- <module>lift-chat-service</module>
- </modules>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.1.4.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>cn.com.ty</groupId>
- <artifactId>lift-server</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <properties>
- <xwy.version>1.0-SNAPSHOT</xwy.version>
- </properties>
- <!--<repositories>-->
- <!--<repository>-->
- <!--<id>private-store</id>-->
- <!--<url>http://122.51.162.43:8081/repository/private-store/</url>-->
- <!--</repository>-->
- <!--</repositories>-->
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>cn.com.xwy</groupId>
- <artifactId>xwy-spring-boot</artifactId>
- <version>${xwy.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.xwy</groupId>
- <artifactId>xwy-cloud-dependencies</artifactId>
- <version>${xwy.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.xwy</groupId>
- <artifactId>xwy-dependencies</artifactId>
- <version>${xwy.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>cn.com.xwy</groupId>
- <artifactId>xwy-util</artifactId>
- <version>${xwy.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.1.3</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>4.1.1</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <filtering>true</filtering>
- <directory>src/main/java</directory>
- </resource>
- <resource>
- <filtering>true</filtering>
- <directory>src/main/resources</directory>
- <includes>
- <include>**/*.*</include>
- </includes>
- </resource>
- </resources>
- </build>
- </project>
|