|
@@ -20,7 +20,17 @@
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
</properties>
|
|
</properties>
|
|
|
-
|
|
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.dubbo</groupId>
|
|
|
|
|
+ <artifactId>dubbo-bom</artifactId>
|
|
|
|
|
+ <version>3.3.0</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ <scope>import</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </dependencyManagement>
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
@@ -31,6 +41,37 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.dubbo</groupId>
|
|
|
|
|
+ <artifactId>dubbo-spring-boot-starter</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.dubbo</groupId>
|
|
|
|
|
+ <artifactId>dubbo-registry-nacos</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>space.anyi</groupId>
|
|
|
|
|
+ <artifactId>open-api-commom</artifactId>
|
|
|
|
|
+ <version>1.0.0</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
|
+ <artifactId>lombok</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>
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|
|
</project>
|