feat: Pom 文件调整.

pull/161/head
chen.ma 3 years ago
parent 7c35e2817a
commit 6ba8a40e86

@ -9,15 +9,11 @@
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>common</artifactId>
<artifactId>dynamic-threadpool-common</artifactId>
<packaging>jar</packaging>
<name>common</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<name>${project.artifactId}</name>
<description>${project.artifactId}</description>
<dependencies>
<dependency>

@ -42,7 +42,7 @@
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>common</artifactId>
<artifactId>dynamic-threadpool-common</artifactId>
</dependency>
<dependency>

@ -36,6 +36,8 @@
<modules>
<module>common</module>
<module>server</module>
<module>config</module>
<module>registry</module>
<module>example</module>
<module>dynamic-threadpool-spring-boot-starter</module>
</modules>
@ -77,8 +79,20 @@
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>common</artifactId>
<version>1.0.0-SNAPSHOT</version>
<artifactId>dynamic-threadpool-common</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-config</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-registry</artifactId>
<version>${revision}</version>
</dependency>
<dependency>

@ -16,45 +16,14 @@
<description>${project.artifactId}</description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>common</artifactId>
<artifactId>dynamic-threadpool-config</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>com.github.dozermapper</groupId>
<artifactId>dozer-core</artifactId>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-registry</artifactId>
</dependency>
</dependencies>

Loading…
Cancel
Save