You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bd...@apache.org on 2022/10/06 22:39:44 UTC

[shiro] branch update-guava-1-10-x created (now 7bbb0e0c)

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

bdemers pushed a change to branch update-guava-1-10-x
in repository https://gitbox.apache.org/repos/asf/shiro.git


      at 7bbb0e0c Add optional flag to skip dependency check for integration tets

This branch includes the following new commits:

     new 7ac34806 Update guava to 31.1
     new 7bbb0e0c Add optional flag to skip dependency check for integration tets

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.



[shiro] 02/02: Add optional flag to skip dependency check for integration tets

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

bdemers pushed a commit to branch update-guava-1-10-x
in repository https://gitbox.apache.org/repos/asf/shiro.git

commit 7bbb0e0c7048f31fbdfe4b9f71519bf2305540cc
Author: Brian Demers <bd...@apache.org>
AuthorDate: Thu Oct 6 17:39:34 2022 -0500

    Add optional flag to skip dependency check for integration tets
---
 integration-tests/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index efc6d0b9..7c94671a 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -37,6 +37,7 @@
         <japicmp.skip>true</japicmp.skip>
         <maven.deploy.skip>true</maven.deploy.skip>
         <nexus.deploy.skip>true</nexus.deploy.skip>
+        <skipItDepCheck>false</skipItDepCheck>
     </properties>
 
     <modules>
@@ -45,6 +46,17 @@
         <module>guice4</module>
     </modules>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <configuration>
+                    <skip>${skipItDepCheck}</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
     <reporting>
         <plugins>
             <plugin>


[shiro] 01/02: Update guava to 31.1

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

bdemers pushed a commit to branch update-guava-1-10-x
in repository https://gitbox.apache.org/repos/asf/shiro.git

commit 7ac34806abcd61856b798c5d8fffe81b8ca45020
Author: Brian Demers <bd...@apache.org>
AuthorDate: Thu Oct 6 17:39:05 2022 -0500

    Update guava to 31.1
---
 pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/pom.xml b/pom.xml
index de9fd531..af2fc1f5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1192,6 +1192,11 @@
                 <artifactId>guice</artifactId>
                 <version>${guice.version}</version>
             </dependency>
+            <dependency>
+                <groupId>com.google.guava</groupId>
+                <artifactId>guava</artifactId>
+                <version>31.1-jre</version>
+            </dependency>
             <dependency>
                 <groupId>com.google.inject.extensions</groupId>
                 <artifactId>guice-multibindings</artifactId>