|
|
@@ -7,6 +7,8 @@
|
|
|
<artifactId>urule-springboot</artifactId>
|
|
|
<version>2.1.8-SNAPSHOT</version>
|
|
|
<properties>
|
|
|
+ <spring.version>5.3.31</spring.version>
|
|
|
+ <spring.boot.version>2.7.18</spring.boot.version>
|
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
|
|
|
|
<java.main.class>com.bstek.urule.springboot.Application</java.main.class>
|
|
|
@@ -34,7 +36,7 @@
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>2.2.4.RELEASE</version>
|
|
|
+ <version>2.7.18</version>
|
|
|
<relativePath />
|
|
|
</parent>
|
|
|
<dependencies>
|
|
|
@@ -71,12 +73,13 @@
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
- <version>5.2.3.RELEASE</version>
|
|
|
+ <version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ <version>${spring.boot.version}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
@@ -98,7 +101,7 @@
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
- <version>1.1.9</version>
|
|
|
+ <version>1.2.21</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
@@ -112,12 +115,14 @@
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
+
|
|
|
<dependency>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
- <artifactId>servlet-api</artifactId>
|
|
|
- <version>2.5</version>
|
|
|
+ <groupId>jakarta.servlet</groupId>
|
|
|
+ <artifactId>jakarta.servlet-api</artifactId>
|
|
|
+ <version>4.0.4</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
+
|
|
|
</dependencies>
|
|
|
<build>
|
|
|
<plugins>
|