|
|
|
@ -5,7 +5,7 @@ |
|
|
|
<parent> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
|
|
<version>3.5.11</version> |
|
|
|
<version>3.5.13</version> |
|
|
|
<relativePath/> <!-- lookup parent from repository --> |
|
|
|
</parent> |
|
|
|
<groupId>com.aeon</groupId> |
|
|
|
@ -42,6 +42,22 @@ |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
<exclusions> |
|
|
|
<exclusion> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-logging</artifactId> |
|
|
|
</exclusion> |
|
|
|
<exclusion> |
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
<artifactId>tomcat-embed-core</artifactId> |
|
|
|
</exclusion> |
|
|
|
</exclusions> |
|
|
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core --> |
|
|
|
<dependency> |
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
<artifactId>tomcat-embed-core</artifactId> |
|
|
|
<version>10.1.54</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
@ -82,6 +98,22 @@ |
|
|
|
<artifactId>disruptor</artifactId> |
|
|
|
<version>4.0.0</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
|
|
<artifactId>jackson-core</artifactId> |
|
|
|
<version>2.21.2</version> <!-- 与 jackson-databind 版本一致 --> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
|
|
<artifactId>jackson-databind</artifactId> |
|
|
|
<version>2.21.2</version> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
|
|
<artifactId>jackson-annotations</artifactId> |
|
|
|
<version>2.21</version> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<build> |
|
|
|
|