This is an automated email from the ASF dual-hosted git repository. ningjiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git
commit 893d8e503e91f77f0780bfe1841190f4800ab6e4 Author: seanyinx <[email protected]> AuthorDate: Mon Jan 22 11:09:18 2018 +0800 SCB-238 removed findbugs annotation from dependency to comply with APL Signed-off-by: seanyinx <[email protected]> --- saga-demo/dependency-free-transaction-demo/pom.xml | 11 +++++++++ .../saga-discovery-servicecenter/pom.xml | 11 +++++++++ saga-spring/pom.xml | 11 +++++++++ saga-web/pom.xml | 26 ++++++++++++++++++---- 4 files changed, 55 insertions(+), 4 deletions(-) diff --git a/saga-demo/dependency-free-transaction-demo/pom.xml b/saga-demo/dependency-free-transaction-demo/pom.xml index 9b8cd3d..4765900 100644 --- a/saga-demo/dependency-free-transaction-demo/pom.xml +++ b/saga-demo/dependency-free-transaction-demo/pom.xml @@ -37,6 +37,17 @@ </dependency> <dependency> <groupId>io.servicecomb</groupId> + <artifactId>spring-boot-starter-provider</artifactId> + <version>${java.chassis.version}</version> + <exclusions> + <exclusion> + <groupId>com.google.code.findbugs</groupId> + <artifactId>annotations</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>io.servicecomb</groupId> <artifactId>java-chassis-dependencies</artifactId> <version>${java.chassis.version}</version> <type>pom</type> diff --git a/saga-discovery/saga-discovery-servicecenter/pom.xml b/saga-discovery/saga-discovery-servicecenter/pom.xml index 9137234..8678714 100644 --- a/saga-discovery/saga-discovery-servicecenter/pom.xml +++ b/saga-discovery/saga-discovery-servicecenter/pom.xml @@ -43,6 +43,17 @@ </dependency> <dependency> <groupId>io.servicecomb</groupId> + <artifactId>spring-boot-starter-provider</artifactId> + <version>${java.chassis.version}</version> + <exclusions> + <exclusion> + <groupId>com.google.code.findbugs</groupId> + <artifactId>annotations</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>io.servicecomb</groupId> <artifactId>java-chassis-dependencies</artifactId> <version>${java.chassis.version}</version> <type>pom</type> diff --git a/saga-spring/pom.xml b/saga-spring/pom.xml index ace3d7c..38f51cc 100755 --- a/saga-spring/pom.xml +++ b/saga-spring/pom.xml @@ -54,6 +54,17 @@ </dependency> <dependency> <groupId>io.servicecomb</groupId> + <artifactId>spring-boot-starter-provider</artifactId> + <version>${java.chassis.version}</version> + <exclusions> + <exclusion> + <groupId>com.google.code.findbugs</groupId> + <artifactId>annotations</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>io.servicecomb</groupId> <artifactId>java-chassis-dependencies</artifactId> <version>${java.chassis.version}</version> <type>pom</type> diff --git a/saga-web/pom.xml b/saga-web/pom.xml index 7a360a2..94b1ec0 100644 --- a/saga-web/pom.xml +++ b/saga-web/pom.xml @@ -38,6 +38,28 @@ </dependency> <dependency> <groupId>io.servicecomb</groupId> + <artifactId>spring-boot-starter-provider</artifactId> + <version>${java.chassis.version}</version> + <exclusions> + <exclusion> + <groupId>com.google.code.findbugs</groupId> + <artifactId>annotations</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>io.servicecomb</groupId> + <artifactId>spring-boot-starter-discovery</artifactId> + <version>${java.chassis.version}</version> + <exclusions> + <exclusion> + <groupId>com.google.code.findbugs</groupId> + <artifactId>annotations</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>io.servicecomb</groupId> <artifactId>java-chassis-dependencies</artifactId> <version>${java.chassis.version}</version> <type>pom</type> @@ -57,22 +79,18 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> - <version>${spring.boot.version}</version> </dependency> <dependency> <groupId>io.servicecomb</groupId> <artifactId>spring-boot-starter-discovery</artifactId> - <version>${java.chassis.version}</version> </dependency> <dependency> <groupId>io.servicecomb</groupId> <artifactId>spring-boot-starter-servicecomb</artifactId> - <version>${java.chassis.version}</version> </dependency> <dependency> <groupId>io.servicecomb</groupId> <artifactId>spring-cloud-zuul</artifactId> - <version>${java.chassis.version}</version> </dependency> </dependencies> -- To stop receiving notification emails like this one, please contact [email protected].
