Skip to content

Commit 9f8fb2f

Browse files
committed
规范pom依赖+升级common-lang3版本到3.7
1 parent cd0382e commit 9f8fb2f

5 files changed

Lines changed: 29 additions & 10 deletions

File tree

common/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
<name>common</name>
1414

1515
<dependencies>
16-
<dependency>
17-
<groupId>org.springframework</groupId>
18-
<artifactId>spring-tx</artifactId>
19-
<scope>provided</scope>
20-
</dependency>
2116
<dependency>
2217
<groupId>org.apache.commons</groupId>
2318
<artifactId>commons-lang3</artifactId>
@@ -26,5 +21,11 @@
2621
<groupId>org.slf4j</groupId>
2722
<artifactId>slf4j-api</artifactId>
2823
</dependency>
24+
<dependency>
25+
<groupId>org.springframework</groupId>
26+
<artifactId>spring-tx</artifactId>
27+
<scope>provided</scope>
28+
<optional>true</optional>
29+
</dependency>
2930
</dependencies>
3031
</project>

event/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,16 @@
1818
<artifactId>common</artifactId>
1919
<version>${project.parent.version}</version>
2020
</dependency>
21+
<dependency>
22+
<groupId>org.springframework</groupId>
23+
<artifactId>spring-context</artifactId>
24+
<scope>provided</scope>
25+
</dependency>
2126
<dependency>
2227
<groupId>org.springframework.boot</groupId>
2328
<artifactId>spring-boot-autoconfigure</artifactId>
2429
<scope>provided</scope>
30+
<optional>true</optional>
2531
</dependency>
2632
</dependencies>
2733
</project>

flow/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,20 @@
2424
<version>${project.parent.version}</version>
2525
</dependency>
2626
<dependency>
27-
<groupId>org.springframework.boot</groupId>
28-
<artifactId>spring-boot-autoconfigure</artifactId>
27+
<groupId>org.springframework</groupId>
28+
<artifactId>spring-context</artifactId>
2929
<scope>provided</scope>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.springframework</groupId>
3333
<artifactId>spring-tx</artifactId>
3434
<scope>provided</scope>
3535
</dependency>
36+
<dependency>
37+
<groupId>org.springframework.boot</groupId>
38+
<artifactId>spring-boot-autoconfigure</artifactId>
39+
<scope>provided</scope>
40+
<optional>true</optional>
41+
</dependency>
3642
</dependencies>
3743
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>org.apache.commons</groupId>
3636
<artifactId>commons-lang3</artifactId>
37-
<version>3.5</version>
37+
<version>3.7</version>
3838
</dependency>
3939
</dependencies>
4040
</dependencyManagement>

service/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,20 @@
2424
<version>${project.parent.version}</version>
2525
</dependency>
2626
<dependency>
27-
<groupId>org.springframework.boot</groupId>
28-
<artifactId>spring-boot-autoconfigure</artifactId>
27+
<groupId>org.springframework</groupId>
28+
<artifactId>spring-context</artifactId>
2929
<scope>provided</scope>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.springframework</groupId>
3333
<artifactId>spring-tx</artifactId>
3434
<scope>provided</scope>
3535
</dependency>
36+
<dependency>
37+
<groupId>org.springframework.boot</groupId>
38+
<artifactId>spring-boot-autoconfigure</artifactId>
39+
<scope>provided</scope>
40+
<optional>true</optional>
41+
</dependency>
3642
</dependencies>
3743
</project>

0 commit comments

Comments
 (0)