| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.poyee</groupId>
- <artifactId>poyee-micro</artifactId>
- <version>1.0.0</version>
- <packaging>pom</packaging>
- <name>poyee-micro</name>
- <modules>
- <module>micro-common</module>
- <module>micro-dao</module>
- <module>micro-manager</module>
- <module>micro-service</module>
- <module>web-controller</module>
- </modules>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <mahout.version>0.9</mahout.version>
- <dozer.version>6.5.2</dozer.version>
- <bee.version>1.17</bee.version>
- <log.version>1.2.17</log.version>
- <lombok.version>1.18.34</lombok.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>2.2.5.RELEASE</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>micro-common</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>micro-dao</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>micro-manager</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>micro-service</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.poyee</groupId>
- <artifactId>web-controller</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.github.dozermapper</groupId>
- <artifactId>dozer-core</artifactId>
- <version>${dozer.version}</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>${log.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.poyee.controller.DictApplication</mainClass>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|