123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>spring-cloud-dependencies-parent</artifactId>
- <groupId>org.springframework.cloud</groupId>
- <version>2.1.5.RELEASE</version>
- <relativePath/>
- </parent>
- <artifactId>sc-common-bom</artifactId>
- <packaging>pom</packaging>
- <version>${sc.version}</version>
- <description>sc 公共版本控制</description>
- <properties>
- <sc.version>1.0-SNAPSHOT</sc.version>
- <mybatis-plus.version>3.1.0</mybatis-plus.version>
- <druid.version>1.1.18</druid.version>
- <mysql.connector.version>8.0.16</mysql.connector.version>
- <swagger.core.version>1.5.22</swagger.core.version>
- <mp.weixin.version>3.3.0</mp.weixin.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-core</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-data</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-gateway</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-datasource</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-job</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-log</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-minio</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-security</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-sequence</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-swagger</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-common-transaction</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.nantian.cloud</groupId>
- <artifactId>sc-upms-api</artifactId>
- <version>${sc.version}</version>
- </dependency>
- <!--mybatis plus extension,包含了mybatis plus core-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-extension</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <!--mybatis-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <!-- druid 连接池 -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>${druid.version}</version>
- </dependency>
- <!--mysql 驱动-->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.connector.version}</version>
- </dependency>
- <!--swagger 最新依赖内置版本-->
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- <version>${swagger.core.version}</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>${swagger.core.version}</version>
- </dependency>
- <!--微信依赖-->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-mp</artifactId>
- <version>${mp.weixin.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-common</artifactId>
- <version>${mp.weixin.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|