Explorar o código

config:后端项目,使用公共模块中的依赖

yang yi hai 10 meses
pai
achega
9de2ba153e
Modificáronse 3 ficheiros con 22 adicións e 9 borrados
  1. 19 6
      open-api-client/pom.xml
  2. 2 2
      open-api-sdk/pom.xml
  3. 1 1
      open-api/pom.xml

+ 19 - 6
open-api-client/pom.xml

@@ -17,12 +17,25 @@
         <dependency>
             <groupId>space.anyi</groupId>
             <artifactId>open-api-commom</artifactId>
-            <version>1.0-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>cn.hutool</groupId>
-            <artifactId>hutool-all</artifactId>
-            <version>5.8.16</version>
+            <version>1.0.0</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework.boot</groupId>
+                    <artifactId>spring-boot-starter</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.baomidou</groupId>
+                    <artifactId>mybatis-plus-boot-starter</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.springframework.boot</groupId>
+                    <artifactId>spring-boot-starter-validation</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.github.xiaoymin</groupId>
+                    <artifactId>knife4j-spring-boot-starter</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 </project>

+ 2 - 2
open-api-sdk/pom.xml

@@ -10,7 +10,7 @@
     </parent>
     <groupId>space.anyi</groupId>
     <artifactId>open-api-sdk</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
+    <version>0.0.1</version>
     <name>open-api-sdk</name>
     <description>open-api-sdk,自定义的spring-boot-starter</description>
     <url/>
@@ -54,7 +54,7 @@
         <dependency>
             <groupId>space.anyi</groupId>
             <artifactId>open-api-commom</artifactId>
-            <version>1.0-SNAPSHOT</version>
+            <version>1.0.0</version>
         </dependency>
         <dependency>
             <groupId>space.anyi</groupId>

+ 1 - 1
open-api/pom.xml

@@ -49,7 +49,7 @@
         <dependency>
             <groupId>space.anyi</groupId>
             <artifactId>open-api-commom</artifactId>
-            <version>1.0-SNAPSHOT</version>
+            <version>1.0.0</version>
         </dependency>
         <dependency>
             <groupId>cn.hutool</groupId>