Skip to content

Commit

Permalink
@fix 修复漏洞,升级外部依赖,统一管理spring-boot-starter版本
Browse files Browse the repository at this point in the history
  • Loading branch information
liangchenhui authored and YORYOR committed Jul 8, 2022
1 parent 6c9b652 commit 08d1582
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.5.12</version>
<version>1.5.10.RELEASE</version>
</dependency>
<dependency>
<groupId>com.didiglobal.turbo</groupId>
Expand Down
15 changes: 11 additions & 4 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,29 @@
</parent>
<properties>
<groovy.version>2.3.7</groovy.version>
<spring-boot-starter.version>1.5.10.RELEASE</spring-boot-starter.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>1.5.10.RELEASE</version>
<version>${spring-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>1.5.10.RELEASE</version>
<version>${spring-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>1.5.10.RELEASE</version>
<version>${spring-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>1.5.10.RELEASE</version>
<version>${spring-boot-starter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -85,6 +86,12 @@
<artifactId>guava</artifactId>
<version>31.0.1-jre</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<groovy.version>2.3.7</groovy.version>
<spring-boot-starter.version>1.5.10.RELEASE</spring-boot-starter.version>
</properties>

<dependencies>
Expand All @@ -62,12 +63,12 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>1.5.10.RELEASE</version>
<version>${spring-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>1.5.10.RELEASE</version>
<version>${spring-boot-starter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 08d1582

Please sign in to comment.