2020-09-02 18:35:03 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-04-01 11:06:10 +08:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<!--<java.version>1.8</java.version>-->
|
|
|
|
|
<spring-boot.version>2.2.13.RELEASE</spring-boot.version>
|
2021-05-12 18:07:58 +08:00
|
|
|
<spring-framework.version>5.2.15.RELEASE</spring-framework.version>
|
|
|
|
|
<reactor-bom.version>Dysprosium-SR20</reactor-bom.version>
|
2021-04-20 10:54:38 +08:00
|
|
|
<lettuce.version>5.3.7.RELEASE</lettuce.version>
|
2021-04-01 11:06:10 +08:00
|
|
|
<nacos.version>0.2.7</nacos.version>
|
2021-04-05 12:35:09 +08:00
|
|
|
<netty.version>4.1.63.Final</netty.version>
|
2021-04-01 11:06:10 +08:00
|
|
|
<httpcore.version>4.4.14</httpcore.version>
|
|
|
|
|
<log4j2.version>2.13.3</log4j2.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>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2020-09-02 18:35:03 +08:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2021-01-20 15:34:53 +08:00
|
|
|
<version>2.2.13.RELEASE</version>
|
2020-09-02 18:35:03 +08:00
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
2020-09-02 18:35:03 +08:00
|
|
|
<artifactId>fizz-gateway-community</artifactId>
|
2021-04-08 21:29:23 +08:00
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<description>fizz gateway community</description>
|
2021-05-17 10:35:52 +08:00
|
|
|
<version>2.0.0</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>fizz-common</module>
|
|
|
|
|
<module>fizz-core</module>
|
|
|
|
|
<module>fizz-plugin</module>
|
2021-04-20 10:54:38 +08:00
|
|
|
<!--<module>fizz-bootstrap</module>-->
|
2021-04-07 16:15:29 +08:00
|
|
|
<module>fizz-spring-boot-starter</module>
|
2021-04-01 11:06:10 +08:00
|
|
|
</modules>
|
2020-09-02 18:35:03 +08:00
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
2021-01-27 18:21:46 +08:00
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
2021-04-01 11:06:10 +08:00
|
|
|
<dependency>
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
2021-04-01 11:06:10 +08:00
|
|
|
<artifactId>fizz-common</artifactId>
|
2021-05-13 11:49:51 +08:00
|
|
|
<version>${project.version}</version>
|
2021-04-21 09:43:46 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.networknt</groupId>
|
|
|
|
|
<artifactId>json-schema-validator-i18n-support</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
2021-04-01 11:06:10 +08:00
|
|
|
<artifactId>fizz-core</artifactId>
|
2021-05-13 11:49:51 +08:00
|
|
|
<version>${project.version}</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2021-04-20 10:54:38 +08:00
|
|
|
<groupId>com.fizzgate</groupId>
|
2021-04-01 11:06:10 +08:00
|
|
|
<artifactId>fizz-plugin</artifactId>
|
2021-05-13 11:49:51 +08:00
|
|
|
<version>${project.version}</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2021-01-27 18:21:46 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
<artifactId>spring-session-bom</artifactId>
|
|
|
|
|
<version>Dragonfruit-RELEASE</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
2021-04-01 11:06:10 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
|
<artifactId>reactor-test</artifactId>
|
2021-05-13 12:23:43 +08:00
|
|
|
<version>3.3.17.RELEASE</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
2021-05-13 12:23:43 +08:00
|
|
|
<version>1.2.76</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.8.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
|
<artifactId>json-smart</artifactId>
|
|
|
|
|
<version>2.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
|
|
|
<artifactId>jettison</artifactId>
|
|
|
|
|
<version>1.3.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
|
<version>20190722</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tapestry</groupId>
|
|
|
|
|
<artifactId>tapestry-json</artifactId>
|
|
|
|
|
<version>5.4.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>3.12.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
<version>2.4.21</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.8.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ctrip.framework.apollo</groupId>
|
|
|
|
|
<artifactId>apollo-client</artifactId>
|
|
|
|
|
<version>1.5.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
2021-05-13 12:23:43 +08:00
|
|
|
<version>2.2.8.RELEASE</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.boot</groupId>
|
|
|
|
|
<artifactId>nacos-config-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${nacos.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.boot</groupId>
|
|
|
|
|
<artifactId>nacos-discovery-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${nacos.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
<version>${commons-pool2.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>it.ozimov</groupId>
|
|
|
|
|
<artifactId>embedded-redis</artifactId>
|
|
|
|
|
<version>0.7.3</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.noear</groupId>
|
|
|
|
|
<artifactId>snack3</artifactId>
|
2021-04-16 15:51:30 +08:00
|
|
|
<version>3.1.14</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
<artifactId>spring-session-data-redis</artifactId>
|
2021-05-13 12:23:43 +08:00
|
|
|
<version>2.3.3.RELEASE</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
|
<version>3.12.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-inline</artifactId>
|
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.dubbo</groupId>
|
|
|
|
|
<artifactId>dubbo</artifactId>
|
|
|
|
|
<version>${apache.dubbo.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- grpc -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
|
<artifactId>grpc-all</artifactId>
|
|
|
|
|
<version>${grpc.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.grpc</groupId>
|
|
|
|
|
<artifactId>grpc-services</artifactId>
|
|
|
|
|
<version>${grpc.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-05-13 12:23:43 +08:00
|
|
|
<version>1.18.20</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
|
|
|
|
<!-- grpc -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-client</artifactId>
|
|
|
|
|
<version>${curator.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-framework</artifactId>
|
|
|
|
|
<version>${curator.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-recipes</artifactId>
|
|
|
|
|
<version>${curator.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
|
<version>${zookeeper.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<version>1.15</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
2021-05-13 12:23:43 +08:00
|
|
|
<version>1.68</version>
|
2021-04-01 11:06:10 +08:00
|
|
|
</dependency>
|
2021-04-08 17:47:58 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.kxml</groupId>
|
|
|
|
|
<artifactId>kxml2</artifactId>
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
</dependency>
|
2021-01-27 18:21:46 +08:00
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2020-09-02 18:35:03 +08:00
|
|
|
|
2021-04-08 21:29:23 +08:00
|
|
|
<url>https://github.com/wehotel/fizz-gateway-community</url>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<url>https://github.com/wehotel/fizz-gateway-community</url>
|
|
|
|
|
<connection>scm:git:https://github.com/wehotel/fizz-gateway-community.git</connection>
|
|
|
|
|
<developerConnection>scm:git:https://github.com/wehotel/fizz-gateway-community.git</developerConnection>
|
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
2021-04-30 15:11:25 +08:00
|
|
|
<id>fizzteam</id>
|
|
|
|
|
<name>fizzteam</name>
|
|
|
|
|
<email>fizzteam@fizzgate.com</email>
|
2021-04-08 21:29:23 +08:00
|
|
|
<url>https://www.fizzgate.com</url>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>GNU General Public License, Version 3 or any later</name>
|
|
|
|
|
<url>https://www.gnu.org/licenses/</url>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
2021-04-01 11:06:10 +08:00
|
|
|
<profiles>
|
|
|
|
|
<!--<profile>
|
|
|
|
|
<id>local</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2021-05-13 11:49:51 +08:00
|
|
|
<xxx>yyy</xxx>
|
2021-04-01 11:06:10 +08:00
|
|
|
</properties>
|
|
|
|
|
</profile>-->
|
2021-04-20 10:54:38 +08:00
|
|
|
<!-- mvn clean deploy -P release -->
|
|
|
|
|
<profile>
|
2021-04-08 21:29:23 +08:00
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
<version>${maven-deploy-plugin.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>${maven-source-plugin.version}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>${maven-javadoc-plugin.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<show>package</show>
|
|
|
|
|
<tags>
|
|
|
|
|
<tag>
|
|
|
|
|
<name>date</name>
|
|
|
|
|
</tag>
|
|
|
|
|
</tags>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<doclint>none</doclint>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<version>1.6</version>
|
2021-04-30 17:47:59 +08:00
|
|
|
<configuration>
|
|
|
|
|
<gpgArguments>
|
|
|
|
|
<arg>--pinentry-mode</arg>
|
|
|
|
|
<arg>loopback</arg>
|
|
|
|
|
</gpgArguments>
|
|
|
|
|
</configuration>
|
2021-04-08 21:29:23 +08:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<version>1.6.8</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>sonatype-release</serverId>
|
|
|
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>sonatype-snapshots</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>sonatype-release</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
2021-04-20 10:54:38 +08:00
|
|
|
</profile>
|
2021-04-01 11:06:10 +08:00
|
|
|
</profiles>
|
2021-04-08 21:29:23 +08:00
|
|
|
|
2020-09-02 18:35:03 +08:00
|
|
|
</project>
|