mirror of
https://gitee.com/log4j/pig.git
synced 2024-12-23 05:00:23 +08:00
e962abf5a5
🔖 2.6.0 spring cloud hoxton
202 lines
6.2 KiB
XML
Executable File
202 lines
6.2 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
||
<!--
|
||
~ Copyright (c) 2019-2020, 冷冷 (wangiegie@gmail.com).
|
||
~ <p>
|
||
~ Licensed under the GNU Lesser General Public License 3.0 (the "License");
|
||
~ you may not use this file except in compliance with the License.
|
||
~ You may obtain a copy of the License at
|
||
~ <p>
|
||
~ https://www.gnu.org/licenses/lgpl.html
|
||
~ <p>
|
||
~ Unless required by applicable law or agreed to in writing, software
|
||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
~ See the License for the specific language governing permissions and
|
||
~ limitations under the License.
|
||
-->
|
||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
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>
|
||
<groupId>com.pig4cloud</groupId>
|
||
<artifactId>pig-cloud-dependencies-parent</artifactId>
|
||
<version>Hoxton.RELEASE</version>
|
||
</parent>
|
||
|
||
<groupId>com.pig4cloud</groupId>
|
||
<artifactId>pig</artifactId>
|
||
<version>2.6.0</version>
|
||
<name>${project.artifactId}</name>
|
||
<packaging>pom</packaging>
|
||
<url>https://www.pig4cloud.com</url>
|
||
|
||
<properties>
|
||
<spring-boot.version>2.2.1.RELEASE</spring-boot.version>
|
||
<spring-cloud.version>Hoxton.RELEASE</spring-cloud.version>
|
||
<spring-platform.version>Cairo-SR8</spring-platform.version>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<maven.compiler.source>1.8</maven.compiler.source>
|
||
<maven.compiler.target>1.8</maven.compiler.target>
|
||
<spring-boot-admin.version>0.1.2</spring-boot-admin.version>
|
||
<hutool.version>5.0.6</hutool.version>
|
||
<mybatis-plus.version>3.2.0</mybatis-plus.version>
|
||
<kaptcha.version>0.0.9</kaptcha.version>
|
||
<velocity.version>1.7</velocity.version>
|
||
<jasypt.version>2.1.0</jasypt.version>
|
||
<swagger.fox.version>2.9.2</swagger.fox.version>
|
||
<knife4j.version>1.9.6</knife4j.version>
|
||
<security.oauth.version>2.3.6.RELEASE</security.oauth.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!--eureka 客户端-->
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
||
</dependency>
|
||
<!--配置文件处理器-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.ulisesbocchio</groupId>
|
||
<artifactId>jasypt-spring-boot-starter</artifactId>
|
||
<version>${jasypt.version}</version>
|
||
</dependency>
|
||
<!--监控-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
<!--监控客户端-->
|
||
<dependency>
|
||
<groupId>com.pig4cloud</groupId>
|
||
<artifactId>spring-boot-admin-starter-client</artifactId>
|
||
<version>${spring-boot-admin.version}</version>
|
||
</dependency>
|
||
<!--断路器依赖-->
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
|
||
</dependency>
|
||
<!--Lombok-->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!--测试依赖-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<modules>
|
||
<module>pig-eureka</module>
|
||
<module>pig-config</module>
|
||
<module>pig-gateway</module>
|
||
<module>pig-auth</module>
|
||
<module>pig-upms</module>
|
||
<module>pig-common</module>
|
||
<module>pig-visual</module>
|
||
</modules>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-dependencies</artifactId>
|
||
<version>${spring-boot.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.spring.platform</groupId>
|
||
<artifactId>platform-bom</artifactId>
|
||
<version>${spring-platform.version}</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>
|
||
<!--稳定版本,替代spring security bom内置-->
|
||
<dependency>
|
||
<groupId>org.springframework.security.oauth</groupId>
|
||
<artifactId>spring-security-oauth2</artifactId>
|
||
<version>${security.oauth.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<build>
|
||
<finalName>${project.name}</finalName>
|
||
<resources>
|
||
<resource>
|
||
<directory>src/main/resources</directory>
|
||
<filtering>true</filtering>
|
||
</resource>
|
||
</resources>
|
||
<pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>${spring-boot.version}</version>
|
||
<configuration>
|
||
<finalName>${project.build.finalName}</finalName>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.8.0</version>
|
||
<configuration>
|
||
<target>${maven.compiler.target}</target>
|
||
<source>${maven.compiler.source}</source>
|
||
<encoding>${project.build.sourceEncoding}</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>pl.project13.maven</groupId>
|
||
<artifactId>git-commit-id-plugin</artifactId>
|
||
<version>2.2.5</version>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
<repositories>
|
||
<!--阿里云主仓库,代理了maven central和jcenter仓库-->
|
||
<repository>
|
||
<id>aliyun</id>
|
||
<name>aliyun</name>
|
||
<url>https://maven.aliyun.com/repository/public</url>
|
||
<releases>
|
||
<enabled>true</enabled>
|
||
</releases>
|
||
<snapshots>
|
||
<enabled>false</enabled>
|
||
</snapshots>
|
||
</repository>
|
||
</repositories>
|
||
</project>
|