mirror of
https://github.com/201206030/novel-plus.git
synced 2025-04-26 17:20:52 +00:00
115 lines
4.1 KiB
Java
115 lines
4.1 KiB
Java
<?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</groupId>
|
|
<artifactId>novel</artifactId>
|
|
<version>3.2.0</version>
|
|
<modules>
|
|
<module>novel-common</module>
|
|
<module>novel-front</module>
|
|
<module>novel-crawl</module>
|
|
<module>novel-admin</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>novel</name>
|
|
<description>小说精品屋父工程</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.8.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>
|
|
<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.4.0</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.9.0</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>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.java2nb</groupId>
|
|
<artifactId>novel-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-snapshots</id>
|
|
<name>Spring Snapshots</name>
|
|
<url>https://repo.spring.io/snapshot</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>spring-milestones</id>
|
|
<name>Spring Milestones</name>
|
|
<url>https://repo.spring.io/milestone</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>spring-snapshots</id>
|
|
<name>Spring Snapshots</name>
|
|
<url>https://repo.spring.io/snapshot</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>spring-milestones</id>
|
|
<name>Spring Milestones</name>
|
|
<url>https://repo.spring.io/milestone</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project> |