删除多余依赖.

This commit is contained in:
lijiahang
2023-07-07 10:50:57 +08:00
parent 87d919c742
commit 04bb4ed32a
8 changed files with 38 additions and 26 deletions

View File

@@ -27,6 +27,7 @@
<velocity.version>2.3</velocity.version>
<druid.version>1.2.16</druid.version>
<redisson.version>3.18.0</redisson.version>
<transmittable-thread-local.version>2.14.2</transmittable-thread-local.version>
</properties>
<dependencyManagement>
@@ -208,6 +209,13 @@
</exclusions>
</dependency>
<!-- transmittable -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
<version>${transmittable-thread-local.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

View File

@@ -46,6 +46,26 @@
<artifactId>mapstruct-processor</artifactId>
</dependency>
<!-- transmittable -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
</dependency>
<!-- configuration -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- web -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<scope>provided</scope>
</dependency>
<!-- doc -->
<dependency>
<groupId>org.springdoc</groupId>

View File

@@ -22,11 +22,6 @@
<artifactId>orion-ops-common</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- mysql -->
<dependency>
<groupId>com.mysql</groupId>

View File

@@ -25,6 +25,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@@ -22,11 +22,6 @@
<artifactId>orion-ops-common</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- doc -->
<dependency>
<groupId>org.springdoc</groupId>

View File

@@ -22,11 +22,6 @@
<artifactId>orion-ops-common</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- doc -->
<dependency>
<groupId>org.springdoc</groupId>

View File

@@ -27,12 +27,6 @@
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
@@ -52,6 +46,14 @@
<artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
<scope>provided</scope>
</dependency>
<!-- security -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@@ -22,11 +22,7 @@
<artifactId>orion-ops-common</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- websocket -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>