mirror of https://gitee.com/maxjhandsome/pig
174 lines
6.9 KiB
XML
174 lines
6.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2018-2025, lengleng All rights reserved.
|
|
~
|
|
~ Redistribution and use in source and binary forms, with or without
|
|
~ modification, are permitted provided that the following conditions are met:
|
|
~
|
|
~ Redistributions of source code must retain the above copyright notice,
|
|
~ this list of conditions and the following disclaimer.
|
|
~ Redistributions in binary form must reproduce the above copyright
|
|
~ notice, this list of conditions and the following disclaimer in the
|
|
~ documentation and/or other materials provided with the distribution.
|
|
~ Neither the name of the pig4cloud.com developer nor the names of its
|
|
~ contributors may be used to endorse or promote products derived from
|
|
~ this software without specific prior written permission.
|
|
~ Author: lengleng (wangiegie@gmail.com)
|
|
-->
|
|
|
|
<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.github</groupId>
|
|
<artifactId>pig</artifactId>
|
|
<version>${pig.version}</version>
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.5.12.RELEASE</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<pig.version>1.1.5</pig.version>
|
|
<spring-boot.version>1.5.12.RELEASE</spring-boot.version>
|
|
<spring-cloud.version>Edgware.SR3</spring-cloud.version>
|
|
|
|
<!--Lombok-->
|
|
<lombok.version>1.16.20</lombok.version>
|
|
|
|
<jjwt.version>0.9.0</jjwt.version>
|
|
<fastjson.version>1.2.46</fastjson.version>
|
|
<hutool.version>3.3.2</hutool.version>
|
|
<commons-io.version>2.6</commons-io.version>
|
|
<jasypt.version>1.18</jasypt.version>
|
|
<mybatis-plus.version>2.1.9</mybatis-plus.version>
|
|
<mybatisplus-spring-boot-starter.version>1.0.5</mybatisplus-spring-boot-starter.version>
|
|
<hibernate-validator.version>5.4.1.Final</hibernate-validator.version>
|
|
<swagger2.version>2.8.0</swagger2.version>
|
|
<fastdfs.version>0.2.0</fastdfs.version>
|
|
<ttl.version>2.2.0</ttl.version>
|
|
<sharding-jdbc-core-spring-boot-starter.version>2.0.1</sharding-jdbc-core-spring-boot-starter.version>
|
|
<velocity-engine-core.version>2.0</velocity-engine-core.version>
|
|
<qiniu.version>[7.2.0, 7.2.99]</qiniu.version>
|
|
<kaptcha.version>0.0.9</kaptcha.version>
|
|
<javadoc.version>3.0.0</javadoc.version>
|
|
<spring-boot-admin-server.version>1.5.6</spring-boot-admin-server.version>
|
|
<spring-boot-admin-server-ui.version>1.5.6</spring-boot-admin-server-ui.version>
|
|
<spring-boot-admin-server-ui-turbine.version>1.5.6</spring-boot-admin-server-ui-turbine.version>
|
|
</properties>
|
|
|
|
<!--公共依赖-->
|
|
<dependencies>
|
|
<!--注册中心-->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
|
</dependency>
|
|
<!--配置中心-->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-config</artifactId>
|
|
</dependency>
|
|
<!--配置文件处理器-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!--监控-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<!--Lombok-->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<!--测试依赖-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<modules>
|
|
<module>pig-auth</module>
|
|
<module>pig-config</module>
|
|
<module>pig-common</module>
|
|
<module>pig-eureka</module>
|
|
<module>pig-gateway</module>
|
|
<module>pig-modules</module>
|
|
<module>pig-visual</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.spring.platform</groupId>
|
|
<artifactId>platform-bom</artifactId>
|
|
<version>Brussels-SR9</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<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>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>build-info</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<target>${java.version}</target>
|
|
<source>${java.version}</source>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>${javadoc.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<!-- 使用aliyun镜像 -->
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun</id>
|
|
<name>aliyun</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
|
|
</repository>
|
|
</repositories>
|
|
</project> |