|
@@ -0,0 +1,112 @@
|
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
+ <parent>
|
|
|
|
+ <groupId>com.usky</groupId>
|
|
|
|
+ <artifactId>base-common</artifactId>
|
|
|
|
+ <version>0.0.1</version>
|
|
|
|
+ </parent>
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+ <artifactId>common-cloud-starter</artifactId>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <!-- SpringCloud Alibaba Nacos -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- SpringCloud Alibaba Nacos Config -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- SpringCloud Alibaba Sentinel -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- SpringBoot Actuator -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- Swagger UI -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
+ <version>${swagger.fox.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- Mysql Connector -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-generator</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
|
+ <artifactId>velocity-engine-core</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- RuoYi Common DataSource -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
|
+ <artifactId>ruoyi-common-datasource</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- RuoYi Common DataScope -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
|
+ <artifactId>ruoyi-common-datascope</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- RuoYi Common Log -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
|
+ <artifactId>ruoyi-common-log</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- RuoYi Common Swagger -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
|
+ <artifactId>ruoyi-common-swagger</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
|
+ <artifactId>service-system-api</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- RuoYi Common Security-->
|
|
|
|
+<!-- <dependency>-->
|
|
|
|
+<!-- <groupId>com.ruoyi</groupId>-->
|
|
|
|
+<!-- <artifactId>ruoyi-common-security</artifactId>-->
|
|
|
|
+<!-- </dependency>-->
|
|
|
|
+
|
|
|
|
+<!-- <dependency>-->
|
|
|
|
+<!-- <groupId>com.usky</groupId>-->
|
|
|
|
+<!-- <artifactId>usky-common-core</artifactId>-->
|
|
|
|
+<!-- </dependency>-->
|
|
|
|
+
|
|
|
|
+<!-- <dependency>-->
|
|
|
|
+<!-- <groupId>com.usky</groupId>-->
|
|
|
|
+<!-- <artifactId>usky-common-mvc</artifactId>-->
|
|
|
|
+<!-- </dependency>-->
|
|
|
|
+
|
|
|
|
+ </dependencies>
|
|
|
|
+</project>
|