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

ilgrosso pushed a commit to branch 4_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit b34039988a821a6418455ace824bd90dbcedc846
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu Sep 3 22:33:28 2026 +0000

    Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.6 to 3.6.0
    
    Bumps 
[org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire)
 from 3.5.6 to 3.6.0.
    - [Release notes](https://github.com/apache/maven-surefire/releases)
    - 
[Commits](https://github.com/apache/maven-surefire/compare/surefire-3.5.6...surefire-3.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-failsafe-plugin
      dependency-version: 3.6.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
---
 client/idrepo/console/pom.xml          | 1 +
 client/idrepo/enduser/pom.xml          | 1 +
 core/persistence-jpa/pom.xml           | 1 +
 core/self-keymaster-starter/pom.xml    | 1 +
 ext/oidcc4ui/persistence-jpa/pom.xml   | 1 +
 ext/openfga/client-openfga/pom.xml     | 1 +
 ext/saml2sp4ui/persistence-jpa/pom.xml | 1 +
 fit/console-reference/pom.xml          | 5 +----
 fit/core-reference/pom.xml             | 4 +++-
 fit/enduser-reference/pom.xml          | 5 +----
 fit/wa-reference/pom.xml               | 5 +----
 pom.xml                                | 3 ++-
 12 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/client/idrepo/console/pom.xml b/client/idrepo/console/pom.xml
index 9045d43aa0..5c4a71f93d 100644
--- a/client/idrepo/console/pom.xml
+++ b/client/idrepo/console/pom.xml
@@ -289,6 +289,7 @@ under the License.
       <properties>
         <maven.build.cache.skipCache>true</maven.build.cache.skipCache>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
 
       <build>
diff --git a/client/idrepo/enduser/pom.xml b/client/idrepo/enduser/pom.xml
index a486250555..63d817a794 100644
--- a/client/idrepo/enduser/pom.xml
+++ b/client/idrepo/enduser/pom.xml
@@ -256,6 +256,7 @@ under the License.
       <properties>
         <maven.build.cache.skipCache>true</maven.build.cache.skipCache>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
 
       <build>
diff --git a/core/persistence-jpa/pom.xml b/core/persistence-jpa/pom.xml
index 8430bb3501..5c43f81158 100644
--- a/core/persistence-jpa/pom.xml
+++ b/core/persistence-jpa/pom.xml
@@ -213,6 +213,7 @@ under the License.
         <action>sql</action>
 
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
       
       <build>
diff --git a/core/self-keymaster-starter/pom.xml 
b/core/self-keymaster-starter/pom.xml
index ac87607545..eee9ba126b 100644
--- a/core/self-keymaster-starter/pom.xml
+++ b/core/self-keymaster-starter/pom.xml
@@ -99,6 +99,7 @@ under the License.
       <properties>
         <maven.build.cache.skipCache>true</maven.build.cache.skipCache>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
 
       <dependencies>
diff --git a/ext/oidcc4ui/persistence-jpa/pom.xml 
b/ext/oidcc4ui/persistence-jpa/pom.xml
index 3eb0dbcf7e..7467e6a32f 100644
--- a/ext/oidcc4ui/persistence-jpa/pom.xml
+++ b/ext/oidcc4ui/persistence-jpa/pom.xml
@@ -91,6 +91,7 @@ under the License.
       
       <properties>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
       
       <build>
diff --git a/ext/openfga/client-openfga/pom.xml 
b/ext/openfga/client-openfga/pom.xml
index 94c042ae31..742b9480a2 100644
--- a/ext/openfga/client-openfga/pom.xml
+++ b/ext/openfga/client-openfga/pom.xml
@@ -35,6 +35,7 @@ under the License.
   
   <properties>
     <skipTests>true</skipTests>
+    <skipITs>true</skipITs>
     <rootpom.basedir>${basedir}/../../..</rootpom.basedir>
   </properties>
 
diff --git a/ext/saml2sp4ui/persistence-jpa/pom.xml 
b/ext/saml2sp4ui/persistence-jpa/pom.xml
index 8f8f97c1aa..1c058741f6 100644
--- a/ext/saml2sp4ui/persistence-jpa/pom.xml
+++ b/ext/saml2sp4ui/persistence-jpa/pom.xml
@@ -91,6 +91,7 @@ under the License.
       
       <properties>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
       
       <build>
diff --git a/fit/console-reference/pom.xml b/fit/console-reference/pom.xml
index fbf7f3b2ec..e9b900ec24 100644
--- a/fit/console-reference/pom.xml
+++ b/fit/console-reference/pom.xml
@@ -211,15 +211,12 @@ under the License.
   </build>
 
   <profiles>
-    <profile>
-      <id>skipTests</id>
-    </profile>
-
     <profile>
       <id>debug</id>
 
       <properties>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
 
       <build>
diff --git a/fit/core-reference/pom.xml b/fit/core-reference/pom.xml
index 00233423b3..fe7c966c34 100644
--- a/fit/core-reference/pom.xml
+++ b/fit/core-reference/pom.xml
@@ -1705,7 +1705,7 @@ under the License.
             <artifactId>maven-failsafe-plugin</artifactId>
             <inherited>true</inherited>
             <configuration>
-              <skipTests>${skipTests}</skipTests>
+              <skipITs>${skipITs}</skipITs>
             </configuration>
           </plugin>
         </plugins>
@@ -1717,6 +1717,7 @@ under the License.
 
       <properties>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
 
       <build>
@@ -1747,6 +1748,7 @@ under the License.
       
       <properties>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
       
       <build>
diff --git a/fit/enduser-reference/pom.xml b/fit/enduser-reference/pom.xml
index 32d013ffa7..72217cafd9 100644
--- a/fit/enduser-reference/pom.xml
+++ b/fit/enduser-reference/pom.xml
@@ -212,15 +212,12 @@ under the License.
   </build>
   
   <profiles>
-    <profile>
-      <id>skipTests</id>
-    </profile>
-
     <profile>
       <id>debug</id>
 
       <properties>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
 
       <build>
diff --git a/fit/wa-reference/pom.xml b/fit/wa-reference/pom.xml
index f41982bb49..a0ad6d8785 100644
--- a/fit/wa-reference/pom.xml
+++ b/fit/wa-reference/pom.xml
@@ -403,15 +403,12 @@ under the License.
   </build>
   
   <profiles>
-    <profile>
-      <id>skipTests</id>
-    </profile>
-
     <profile>
       <id>debug</id>
 
       <properties>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
       </properties>
 
       <build>
diff --git a/pom.xml b/pom.xml
index fe7114f6e0..2dbdfd8157 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1824,7 +1824,7 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-failsafe-plugin</artifactId>
-          <version>3.5.6</version>
+          <version>3.6.0</version>
           <configuration>
             <redirectTestOutputToFile>true</redirectTestOutputToFile>
             <runOrder>alphabetical</runOrder>
@@ -2437,6 +2437,7 @@ under the License.
       <properties>
         <maven.build.cache.skipCache>true</maven.build.cache.skipCache>
         <skipTests>true</skipTests>
+        <skipITs>true</skipITs>
         <ianal.phase>none</ianal.phase>
         <modernizer.skip>true</modernizer.skip>
         <rat.skip>true</rat.skip>

Reply via email to