2021-04-01 11:06:10 +08:00
|
|
|
<?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">
|
2021-04-20 10:54:38 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-04-01 11:06:10 +08:00
|
|
|
<parent>
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.2.13.RELEASE</version>
|
|
|
|
|
<relativePath/>
|
2021-04-01 11:06:10 +08:00
|
|
|
</parent>
|
|
|
|
|
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
2021-04-01 11:06:10 +08:00
|
|
|
<artifactId>fizz-bootstrap</artifactId>
|
2021-04-30 16:19:19 +08:00
|
|
|
<version>2.0.0-beta1</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
|
|
|
|
|
<properties>
|
2021-04-20 10:54:38 +08:00
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<spring-framework.version>5.2.14.RELEASE</spring-framework.version>
|
|
|
|
|
<reactor-bom.version>Dysprosium-SR19</reactor-bom.version>
|
|
|
|
|
<lettuce.version>5.3.7.RELEASE</lettuce.version>
|
|
|
|
|
<netty.version>4.1.63.Final</netty.version>
|
|
|
|
|
<httpcore.version>4.4.14</httpcore.version>
|
|
|
|
|
<log4j2.version>2.13.3</log4j2.version>
|
|
|
|
|
<commons-lang3.version>3.12.0</commons-lang3.version>
|
|
|
|
|
<lombok.version>1.18.18</lombok.version>
|
|
|
|
|
<apache.dubbo.version>2.7.5</apache.dubbo.version>
|
|
|
|
|
<grpc.version>1.16.1</grpc.version>
|
|
|
|
|
<mockito.version>3.4.6</mockito.version>
|
|
|
|
|
<curator.version>4.0.1</curator.version>
|
|
|
|
|
<zookeeper.version>3.5.9</zookeeper.version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2021-04-21 09:43:46 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
|
|
|
|
<artifactId>fizz-common</artifactId>
|
2021-04-30 16:19:19 +08:00
|
|
|
<version>2.0.0-beta1</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
2021-04-21 09:43:46 +08:00
|
|
|
|
2021-04-01 11:06:10 +08:00
|
|
|
<dependency>
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
2021-04-08 21:29:23 +08:00
|
|
|
<artifactId>fizz-spring-boot-starter</artifactId>
|
2021-04-30 16:19:19 +08:00
|
|
|
<version>2.0.0-beta1</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2021-04-08 21:29:23 +08:00
|
|
|
<profiles>
|
|
|
|
|
<!--<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
<version>${maven-deploy-plugin.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>-->
|
|
|
|
|
</profiles>
|
|
|
|
|
|
2021-04-01 11:06:10 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|