Skip to content

Commit bb034e2

Browse files
committed
整理工程目录和pom
1 parent 0141c2c commit bb034e2

File tree

6 files changed

+52
-34
lines changed

6 files changed

+52
-34
lines changed

database-common/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>easybuild-framework</artifactId>
7+
<groupId>com.data2.easybuild</groupId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>database-common</artifactId>
13+
14+
15+
</project>

example/pom.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,30 @@
1616

1717
<properties>
1818
<java.version>1.8</java.version>
19+
<easy.version>0.0.1-SNAPSHOT</easy.version>
1920
</properties>
2021

2122
<dependencies>
2223

2324
<dependency>
2425
<groupId>com.data2.easybuild</groupId>
2526
<artifactId>server-common</artifactId>
26-
<version>0.0.1-SNAPSHOT</version>
27+
<version>${easy.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>com.data2.easybuild</groupId>
31+
<artifactId>redis-common</artifactId>
32+
<version>${easy.version}</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.data2.easybuild</groupId>
36+
<artifactId>message-queue-common</artifactId>
37+
<version>${easy.version}</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.data2.easybuild</groupId>
41+
<artifactId>config-center-common</artifactId>
42+
<version>${easy.version}</version>
2743
</dependency>
2844
<dependency>
2945
<groupId>org.springframework.boot</groupId>

kaptcha-common/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>easybuild-framework</artifactId>
7+
<groupId>com.data2.easybuild</groupId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>kaptcha-common</artifactId>
13+
14+
15+
</project>

message-queue-common/src/main/java/com/data2/easybuild/message/queue/common/rocketmq/ConsumerGroupCache.java

Lines changed: 0 additions & 16 deletions
This file was deleted.

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
<module>utils-common</module>
2020
<module>message-queue-common</module>
2121
<module>config-center-common</module>
22+
<module>kaptcha-common</module>
23+
<module>database-common</module>
2224
</modules>
2325

2426

server-common/pom.xml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,9 @@
3636
<version>${project.parent.version}</version>
3737
</dependency>
3838
<dependency>
39-
<groupId>com.data2.easybuild</groupId>
40-
<artifactId>redis-common</artifactId>
41-
<version>${project.parent.version}</version>
42-
</dependency>
43-
<dependency>
44-
<groupId>com.data2.easybuild</groupId>
45-
<artifactId>message-queue-common</artifactId>
46-
<version>${project.parent.version}</version>
47-
</dependency>
48-
<dependency>
49-
<groupId>com.data2.easybuild</groupId>
50-
<artifactId>config-center-common</artifactId>
51-
<version>${project.parent.version}</version>
52-
</dependency>
53-
<dependency>
54-
<groupId>redis.clients</groupId>
55-
<artifactId>jedis</artifactId>
39+
<groupId>org.redisson</groupId>
40+
<artifactId>redisson</artifactId>
41+
<scope>compile</scope>
5642
</dependency>
5743
<dependency>
5844
<groupId>io.springfox</groupId>

0 commit comments

Comments
 (0)