Skip to content

Commit

Permalink
初步尝试升级到新版本的 spring data jpa
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkfox committed Nov 14, 2021
1 parent 901e157 commit a139b08
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,33 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>2.5.5</version>
<version>2.6.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.4.32.Final</version>
<version>5.6.0.Final</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.3</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.28.0-GA</version>
<optional>true</optional>
<exclusions>
<exclusion>
<artifactId>xml-apis</artifactId>
<groupId>xml-apis</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
Expand All @@ -64,15 +82,15 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<version>1.18.22</version>
<optional>true</optional>
</dependency>

<!-- 以下是编译运行所需的依赖包. -->
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.4.12.Final</version>
<version>2.4.13.Final</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
Expand All @@ -90,7 +108,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.3.10</version>
<version>5.3.12</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -102,7 +120,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.76</version>
<version>1.2.78</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit a139b08

Please sign in to comment.