mirror of
https://github.com/201206030/novel-cloud.git
synced 2025-04-27 01:40:50 +00:00
269 lines
9.9 KiB
XML
269 lines
9.9 KiB
XML
<?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>
|
|
|
|
<groupId>com.java2nb.novel</groupId>
|
|
<artifactId>novel-cloud</artifactId>
|
|
<version>1.0.0</version>
|
|
<modules>
|
|
<module>novel-common</module>
|
|
<module>novel-gateway</module>
|
|
<module>novel-monitor</module>
|
|
<module>novel-user</module>
|
|
<module>novel-gen</module>
|
|
<module>novel-book</module>
|
|
<module>novel-news</module>
|
|
<module>novel-home</module>
|
|
<module>novel-pay</module>
|
|
<module>novel-search</module>
|
|
<module>novel-author</module>
|
|
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>novel-cloud</name>
|
|
<description>小说精品屋-微服务版</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.2.5.RELEASE</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<spring-cloud.version>Hoxton.SR4</spring-cloud.version>
|
|
<nacos.version>0.2.2.RELEASE</nacos.version>
|
|
<swagger.version>2.7.0</swagger.version>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
<mysql.version>8.0.11</mysql.version>
|
|
<mybatis.version>1.3.2</mybatis.version>
|
|
<mybatis-generator.version>1.3.7</mybatis-generator.version>
|
|
<mybatis-dynamic-sql.version>1.1.4</mybatis-dynamic-sql.version>
|
|
<pagehelper.version>1.2.5</pagehelper.version>
|
|
<orderbyhelper.version>1.0.2</orderbyhelper.version>
|
|
<commons-lang3.version>3.4</commons-lang3.version>
|
|
<jjwt.version>0.10.6</jjwt.version>
|
|
<elasticsearch.version>6.2.2</elasticsearch.version>
|
|
<jest.version>6.3.1</jest.version>
|
|
<redis.version>1.4.1.RELEASE</redis.version>
|
|
<redisson.version>3.12.5</redisson.version>
|
|
<sharding.jdbc.version>3.0.0</sharding.jdbc.version>
|
|
<aliyun-sdk-oss.version>2.4.0</aliyun-sdk-oss.version>
|
|
<commons-fileupload.version>1.3.1</commons-fileupload.version>
|
|
<fastdfs-client.version>1.26.1-RELEASE</fastdfs-client.version>
|
|
<alipay-sdk-java.version>4.9.153.ALL</alipay-sdk-java.version>
|
|
<admin-starter-server.version>2.2.3</admin-starter-server.version>
|
|
|
|
<novel-common.version>1.0.0</novel-common.version>
|
|
<novel-user-api.version>1.0.0</novel-user-api.version>
|
|
<novel-book-api.version>1.0.0</novel-book-api.version>
|
|
<novel-news-api.version>1.0.0</novel-news-api.version>
|
|
<novel-pay-api.version>1.0.0</novel-pay-api.version>
|
|
<novel-author-api.version>1.0.0</novel-author-api.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!--novel-cloud相关模块-->
|
|
<dependency>
|
|
<groupId>com.java2nb.novel</groupId>
|
|
<artifactId>novel-common</artifactId>
|
|
<version>${novel-common.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.java2nb.novel</groupId>
|
|
<artifactId>user-api</artifactId>
|
|
<version>${novel-user-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.java2nb.novel</groupId>
|
|
<artifactId>book-api</artifactId>
|
|
<version>${novel-book-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.java2nb.novel</groupId>
|
|
<artifactId>news-api</artifactId>
|
|
<version>${novel-news-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.java2nb.novel</groupId>
|
|
<artifactId>pay-api</artifactId>
|
|
<version>${novel-pay-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.java2nb.novel</groupId>
|
|
<artifactId>author-api</artifactId>
|
|
<version>${novel-author-api.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- springCloud -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<!-- nacos注册中心 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
<version>${nacos.version}</version>
|
|
</dependency>
|
|
|
|
<!-- nacos配置中心 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
<version>${nacos.version}</version>
|
|
</dependency>
|
|
|
|
<!--swagger-->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
|
|
<!--swagger ui-->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!--集成SpringBoot Admin监控-->
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
|
<version>${admin-starter-server.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!--redis-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
|
<version>${redis.version}</version>
|
|
</dependency>
|
|
|
|
<!--mysql驱动-->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
|
|
<!--mybatis-->
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>${mybatis.version}</version>
|
|
</dependency>
|
|
|
|
<!--mybatis动态sql-->
|
|
<dependency>
|
|
<groupId>org.mybatis.dynamic-sql</groupId>
|
|
<artifactId>mybatis-dynamic-sql</artifactId>
|
|
<version>${mybatis-dynamic-sql.version}</version>
|
|
</dependency>
|
|
|
|
<!-- sharding jdbc依赖 -->
|
|
<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>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper.version}</version>
|
|
</dependency>
|
|
|
|
<!--排序助手启动器-->
|
|
<dependency>
|
|
<groupId>com.cuisongliu</groupId>
|
|
<artifactId>orderbyhelper-spring-boot-starter</artifactId>
|
|
<version>${orderbyhelper.version}</version>
|
|
</dependency>
|
|
|
|
<!--apache的通用工具包-->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- jwt -->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-api</artifactId>
|
|
<version>${jjwt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-impl</artifactId>
|
|
<version>${jjwt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
<scope>runtime</scope>
|
|
<version>${jjwt.version}</version>
|
|
</dependency>
|
|
|
|
<!-- MyBatis 生成器 -->
|
|
<dependency>
|
|
<groupId>org.mybatis.generator</groupId>
|
|
<artifactId>mybatis-generator-core</artifactId>
|
|
<version>${mybatis-generator.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project> |