forked from alibaba/spring-cloud-alibaba
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request alibaba#1371 from mercyblitz/greenwich
[Feature] Synchronizing source code to Spring Cloud Alibaba greenwich branch
- Loading branch information
Showing
74 changed files
with
773 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,17 +8,17 @@ | |
<parent> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-build</artifactId> | ||
<version>2.1.10.RELEASE</version> | ||
<version>2.1.11.RELEASE</version> | ||
<relativePath/> | ||
</parent> | ||
|
||
<groupId>com.alibaba.cloud</groupId> | ||
<artifactId>spring-cloud-alibaba</artifactId> | ||
<version>2.1.2.BUILD-SNAPSHOT</version> | ||
<version>${revision}</version> | ||
<packaging>pom</packaging> | ||
<name>Spring Cloud Alibaba</name> | ||
<description>Spring Cloud Alibaba</description> | ||
<url>https://github.com/alibaba/spring-cloud-alibaba</url> | ||
<url>https://github.com/alibaba/spring-cloud-alibaba/tree/greenwich</url> | ||
|
||
<licenses> | ||
<license> | ||
|
@@ -69,12 +69,22 @@ | |
<name>yunzheng</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>theonefx</id> | ||
<name>theonefx</name> | ||
<email>[email protected]</email> | ||
<organization>Alibaba</organization> | ||
<url>https://github.com/theonefx</url> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<!-- Project revision --> | ||
<revision>2.1.2.RELEASE</revision> | ||
|
||
<!-- Dependency Versions --> | ||
<spring-cloud-commons.version>2.1.5.RELEASE</spring-cloud-commons.version> | ||
<spring-cloud-config.version>2.1.6.RELEASE</spring-cloud-config.version> | ||
<spring-cloud-config.version>2.1.7.RELEASE</spring-cloud-config.version> | ||
<spring-cloud-consul.version>2.1.5.RELEASE</spring-cloud-consul.version> | ||
<spring-cloud-gateway.version>2.1.5.RELEASE</spring-cloud-gateway.version> | ||
<spring-cloud-netflix.version>2.1.5.RELEASE</spring-cloud-netflix.version> | ||
|
@@ -88,7 +98,7 @@ | |
<slf4j-api.version>1.7.25</slf4j-api.version> | ||
|
||
<!-- Apache Dubbo --> | ||
<dubbo.version>2.7.4.1</dubbo.version> | ||
<dubbo.version>2.7.6</dubbo.version> | ||
<curator.version>4.0.1</curator.version> | ||
|
||
<!-- Apache RocketMQ --> | ||
|
@@ -100,6 +110,10 @@ | |
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version> | ||
<gmavenplus-plugin.version>1.6</gmavenplus-plugin.version> | ||
<jacoco.version>0.8.3</jacoco.version> | ||
<maven-source-plugin.version>2.2.1</maven-source-plugin.version> | ||
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> | ||
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> | ||
<flatten-maven-plugin.version>1.1.0</flatten-maven-plugin.version> | ||
</properties> | ||
|
||
<modules> | ||
|
@@ -304,7 +318,7 @@ | |
</goals> | ||
<configuration> | ||
<!-- Checkstyle rules inherited from spring-cloud-build --> | ||
<suppressionsLocation>eclipse/checkstyle-suppressions.xml</suppressionsLocation> | ||
<suppressionsLocation>${session.executionRootDirectory}/eclipse/checkstyle-suppressions.xml</suppressionsLocation> | ||
<includeTestSourceDirectory>true</includeTestSourceDirectory> | ||
<consoleOutput>true</consoleOutput> | ||
<failsOnError>true</failsOnError> | ||
|
@@ -411,6 +425,93 @@ | |
</pluginRepositories> | ||
</profile> | ||
|
||
<profile> | ||
<id>release</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>${maven-source-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<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> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>${maven-gpg-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>flatten-maven-plugin</artifactId> | ||
<version>${flatten-maven-plugin.version}</version> | ||
<configuration> | ||
<updatePomFile>true</updatePomFile> | ||
<flattenMode>resolveCiFriendliesOnly</flattenMode> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>flatten</id> | ||
<phase>process-resources</phase> | ||
<goals> | ||
<goal>flatten</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>flatten.clean</id> | ||
<phase>clean</phase> | ||
<goals> | ||
<goal>clean</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>sonatype-nexus-snapshots</id> | ||
<name>Sonatype Nexus Snapshots</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>sonatype-nexus-staging</id> | ||
<name>Nexus Release Repository</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
</profile> | ||
|
||
</profiles> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.