|
|
@@ -5,7 +5,7 @@
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>2.3.2.RELEASE</version>
|
|
|
+ <version>2.6.5</version>
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
</parent>
|
|
|
<groupId>com.izouma</groupId>
|
|
|
@@ -30,7 +30,7 @@
|
|
|
</repositories>
|
|
|
|
|
|
<properties>
|
|
|
- <java.version>1.8</java.version>
|
|
|
+ <java.version>11</java.version>
|
|
|
<skipTests>true</skipTests>
|
|
|
<poi.verion>3.17</poi.verion>
|
|
|
<javawx.version>3.5.0</javawx.version>
|
|
|
@@ -43,6 +43,14 @@
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <excludes>
|
|
|
+ <exclude>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ </exclude>
|
|
|
+ </excludes>
|
|
|
+ </configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
@@ -75,6 +83,11 @@
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
|
@@ -82,12 +95,17 @@
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.retry</groupId>
|
|
|
+ <artifactId>spring-retry</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
- <groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
- <artifactId>caffeine</artifactId>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-aspects</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|