mirror of
https://github.com/chillzhuang/blade-tool
synced 2024-11-05 18:19:29 +08:00
205 lines
7.5 KiB
XML
205 lines
7.5 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>org.springblade</groupId>
|
||
|
<artifactId>blade-tool</artifactId>
|
||
|
<version>1.0.0-RC1</version>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<blade.tool.version>1.0.0-RC1</blade.tool.version>
|
||
|
|
||
|
<java.version>1.8</java.version>
|
||
|
<maven.plugin.version>3.8.0</maven.plugin.version>
|
||
|
<swagger.version>2.9.2</swagger.version>
|
||
|
<swagger.models.version>1.5.21</swagger.models.version>
|
||
|
<swagger.bootstrapui.version>1.8.8</swagger.bootstrapui.version>
|
||
|
<mybatis.plus.version>3.0.6</mybatis.plus.version>
|
||
|
<curator.framework.version>4.0.1</curator.framework.version>
|
||
|
<protostuff.version>1.6.0</protostuff.version>
|
||
|
<disruptor.version>3.4.2</disruptor.version>
|
||
|
<spring.boot.admin.version>2.0.2</spring.boot.admin.version>
|
||
|
|
||
|
<spring.boot.version>2.0.7.RELEASE</spring.boot.version>
|
||
|
<spring.cloud.version>Finchley.SR2</spring.cloud.version>
|
||
|
<spring.platform.version>Cairo-SR5</spring.platform.version>
|
||
|
</properties>
|
||
|
|
||
|
<modules>
|
||
|
<module>blade-core-boot</module>
|
||
|
<module>blade-core-launch</module>
|
||
|
<module>blade-core-secure</module>
|
||
|
<module>blade-core-tool</module>
|
||
|
<module>blade-core-log</module>
|
||
|
<module>blade-core-mybatis</module>
|
||
|
<module>blade-core-swagger</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>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||
|
<version>${spring.cloud.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>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<dependencies>
|
||
|
<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>
|
||
|
<dependency>
|
||
|
<groupId>de.codecentric</groupId>
|
||
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
||
|
<version>${spring.boot.admin.version}</version>
|
||
|
</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>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
|
||
|
</dependency>
|
||
|
<!--<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-zookeeper-discovery</artifactId>
|
||
|
</dependency>-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-consul-discovery</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.retry</groupId>
|
||
|
<artifactId>spring-retry</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-devtools</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<!--<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-context-indexer</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>-->
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>${project.name}</finalName>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<directory>src/main/java</directory>
|
||
|
<includes>
|
||
|
<include>**/*.xml</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>${maven.plugin.version}</version>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
<compilerArgs>
|
||
|
<arg>-parameters</arg>
|
||
|
</compilerArgs>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<!-- 打jar包 -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.1.0</version>
|
||
|
</plugin>
|
||
|
<!-- 打source包 -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<version>3.0.1</version>
|
||
|
<configuration>
|
||
|
<attach>true</attach>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>compile</phase>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>aliyun-repos</id>
|
||
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
||
|
<snapshots>
|
||
|
<enabled>false</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<pluginRepositories>
|
||
|
<pluginRepository>
|
||
|
<id>aliyun-plugin</id>
|
||
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
||
|
<snapshots>
|
||
|
<enabled>false</enabled>
|
||
|
</snapshots>
|
||
|
</pluginRepository>
|
||
|
</pluginRepositories>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>release</id>
|
||
|
<name>Release Repository</name>
|
||
|
<url>http://nexus.gitee.ltd/repository/maven-releases/</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
|
||
|
</project>
|