You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by fp...@apache.org on 2019/05/12 15:05:05 UTC

[shiro] branch master updated (b7ff8e7 -> 22a2612)

This is an automated email from the ASF dual-hosted git repository.

fpapon pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shiro.git.


    from b7ff8e7  Move commons-lang version properties to root pom
     new fbe3037  Move commons-logging version properties to root pom
     new 22a2612  Move jaxrs-api version properties to root pom

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                         | 2 ++
 samples/spring-boot-web/pom.xml | 2 +-
 support/jaxrs/pom.xml           | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)


[shiro] 01/02: Move commons-logging version properties to root pom

Posted by fp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

fpapon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shiro.git

commit fbe303706031f495bd801840e793b7b769b9fe4d
Author: Francois Papon <fp...@apache.org>
AuthorDate: Sun May 12 18:40:11 2019 +0400

    Move commons-logging version properties to root pom
---
 pom.xml                         | 1 +
 samples/spring-boot-web/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 9fff58b..a46ca83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,6 +83,7 @@
         <commons.configuration2.version>2.2</commons.configuration2.version>
         <commons.lang3.version>3.3.2</commons.lang3.version>
         <commons.lang.version>2.4</commons.lang.version>
+        <commons.logging.version>1.2</commons.logging.version>
         <crowd.version>1.5.2</crowd.version>
         <!-- Don't change this version without also changing the shiro-ehcache and shiro-features
              modules' OSGi metadata: -->
diff --git a/samples/spring-boot-web/pom.xml b/samples/spring-boot-web/pom.xml
index 0c1cceb..43ca097 100644
--- a/samples/spring-boot-web/pom.xml
+++ b/samples/spring-boot-web/pom.xml
@@ -66,7 +66,7 @@
         <dependency>
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
-            <version>1.2</version>
+            <version>${commons.logging.version}</version>
         </dependency>
     </dependencies>
 


[shiro] 02/02: Move jaxrs-api version properties to root pom

Posted by fp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

fpapon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shiro.git

commit 22a2612056485a06507b644f0d1a61b0ac437d04
Author: Francois Papon <fp...@apache.org>
AuthorDate: Sun May 12 19:00:04 2019 +0400

    Move jaxrs-api version properties to root pom
---
 pom.xml               | 1 +
 support/jaxrs/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a46ca83..cf362f6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -100,6 +100,7 @@
         <spring.version>4.3.22.RELEASE</spring.version>
         <spring-boot.version>1.5.19.RELEASE</spring-boot.version>
         <guice.version>3.0</guice.version>
+        <jaxrs.api.version>2.0.1</jaxrs.api.version>
 
         <!-- Test 3rd-party dependencies: -->
         <easymock.version>3.4</easymock.version>
diff --git a/support/jaxrs/pom.xml b/support/jaxrs/pom.xml
index f2a970b..0c2023f 100644
--- a/support/jaxrs/pom.xml
+++ b/support/jaxrs/pom.xml
@@ -47,7 +47,7 @@
         <dependency>
             <groupId>javax.ws.rs</groupId>
             <artifactId>javax.ws.rs-api</artifactId>
-            <version>2.0.1</version>
+            <version>${jaxrs.api.version}</version>
         </dependency>
 
         <!-- Test Deps -->