341 lines
12 KiB
XML
341 lines
12 KiB
XML
<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>
|
|
<groupId>shapelight.net</groupId>
|
|
<artifactId>shapelight-cell</artifactId>
|
|
<version>2.0.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>shapelight-cell</name>
|
|
<url>https://www.shapelight.net</url>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.7.RELEASE</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>shapelight-common</module>
|
|
<module>shapelight-admin</module>
|
|
<!--<module>shapelight-api</module>-->
|
|
<!--<module>shapelight-dynamic-datasource</module>-->
|
|
<module>shapelight-engine</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<junit.version>4.12</junit.version>
|
|
<jedis.version>2.9.0</jedis.version>
|
|
<druid.version>1.2.13</druid.version>
|
|
<mybatisplus.version>3.5.7</mybatisplus.version>
|
|
<mysql.version>8.0.25</mysql.version>
|
|
<mssql.version>4.0</mssql.version>
|
|
<oracle.version>11.2.0.3</oracle.version>
|
|
<commons.lang.version>2.6</commons.lang.version>
|
|
<commons.fileupload.version>1.3.1</commons.fileupload.version>
|
|
<commons.io.version>2.5</commons.io.version>
|
|
<commons.codec.version>1.10</commons.codec.version>
|
|
<fastjson.version>1.2.78</fastjson.version>
|
|
<joda.time.version>2.9.9</joda.time.version>
|
|
<lombok.version>1.18.4</lombok.version>
|
|
<swagger.version>2.7.0</swagger.version>
|
|
<gson.version>2.8.5</gson.version>
|
|
<!--<sharding.jdbc.version>3.0.0</sharding.jdbc.version>-->
|
|
<sharding.jdbc.version>2.0.3</sharding.jdbc.version>
|
|
<spring-cloud.version>Greenwich.SR1</spring-cloud.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- SpringCloud 版本依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
<version>2.17.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-validation</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
<version>${jedis.version}</version>
|
|
</dependency>
|
|
<!-- mysql驱动 -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
<!-- oracle驱动 -->
|
|
<dependency>
|
|
<groupId>com.oracle</groupId>
|
|
<artifactId>ojdbc6</artifactId>
|
|
<version>${oracle.version}</version>
|
|
</dependency>
|
|
<!-- mssql驱动 -->
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>sqljdbc4</artifactId>
|
|
<version>${mssql.version}</version>
|
|
</dependency>
|
|
<!-- postgresql驱动 -->
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.apache.shardingsphere</groupId>-->
|
|
<!--<artifactId>sharding-jdbc-core</artifactId>-->
|
|
<!--<version>4.0.1</version>-->
|
|
<!--</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>io.shardingsphere</groupId>
|
|
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
|
|
<version>${sharding.jdbc.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.shardingsphere</groupId>
|
|
<artifactId>sharding-jdbc-spring-namespace</artifactId>
|
|
<version>${sharding.jdbc.version}</version>
|
|
</dependency>-->
|
|
|
|
<!--<dependency>
|
|
<groupId>io.shardingjdbc</groupId>
|
|
<artifactId>sharding-jdbc-core</artifactId>
|
|
<version>2.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.shardingjdbc</groupId>
|
|
<artifactId>sharding-jdbc-core-spring-namespace</artifactId>
|
|
<version>2.0.3</version>
|
|
</dependency>-->
|
|
|
|
|
|
|
|
<!--<dependency>
|
|
<groupId>io.shardingsphere</groupId>
|
|
<artifactId>sharding-jdbc-core</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>-->
|
|
|
|
|
|
<!--<dependency>
|
|
<groupId>org.apache.shardingsphere</groupId>
|
|
<artifactId>sharding-jdbc-spring-namespace</artifactId>
|
|
<version>4.0.0-RC2</version>
|
|
</dependency>-->
|
|
|
|
<!--<dependency>
|
|
<groupId>com.dangdang</groupId>
|
|
<artifactId>sharding-jdbc-config-spring</artifactId>
|
|
<version>1.5.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.shardingjdbc</groupId>
|
|
<artifactId>sharding-jdbc-core</artifactId>
|
|
<version>2.0.3</version>
|
|
</dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>io.minio</groupId>
|
|
<artifactId>minio</artifactId>
|
|
<version>7.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>0.4.8</version>
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatisplus.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>${commons.lang.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>${commons.fileupload.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons.io.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>${commons.codec.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
<version>${joda.time.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>${gson.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>0.4.13</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-ext-jdk16</artifactId>
|
|
<version>1.45</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.yulichang</groupId>
|
|
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
|
<version>1.5.0</version>
|
|
</dependency>
|
|
<!--mapstruct-->
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct</artifactId>
|
|
<version>1.6.0.Beta1</version>
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
<!-- 阿里云maven仓库 -->
|
|
<repositories>
|
|
<repository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|