From 75f3cb81b9e3c6b9331856cba8fc385726080340 Mon Sep 17 00:00:00 2001 From: Marcus Hert Da Coregio Date: Mon, 18 Mar 2024 08:50:20 -0300 Subject: [PATCH] Allow gradle cache on tests See gh-54 --- reactive/rsocket/hello-security/build.gradle | 2 +- reactive/webflux-fn/hello-security/build.gradle | 2 +- reactive/webflux-fn/hello/build.gradle | 2 +- .../java/authentication/username-password/form/build.gradle | 2 +- reactive/webflux/java/authentication/x509/build.gradle | 2 +- reactive/webflux/java/hello-security-explicit/build.gradle | 2 +- reactive/webflux/java/hello-security/build.gradle | 2 +- reactive/webflux/java/hello/build.gradle | 2 +- reactive/webflux/java/method/build.gradle | 2 +- reactive/webflux/java/oauth2/login/build.gradle | 2 +- reactive/webflux/java/oauth2/resource-server/build.gradle | 2 +- reactive/webflux/java/oauth2/webclient/build.gradle | 2 +- servlet/java-configuration/aspectj/build.gradle | 2 +- servlet/java-configuration/authentication/preauth/build.gradle | 2 +- .../java-configuration/authentication/remember-me/build.gradle | 2 +- .../authentication/username-password/form/build.gradle | 2 +- .../authentication/username-password/in-memory/build.gradle | 2 +- .../authentication/username-password/jdbc/build.gradle | 2 +- .../authentication/username-password/ldap/build.gradle | 2 +- servlet/java-configuration/authentication/x509/build.gradle | 2 +- servlet/java-configuration/data/build.gradle | 2 +- servlet/java-configuration/hello-mvc-security/build.gradle | 2 +- servlet/java-configuration/hello-security-explicit/build.gradle | 2 +- servlet/java-configuration/hello-security/build.gradle | 2 +- servlet/java-configuration/max-sessions/build.gradle | 2 +- servlet/java-configuration/saml2/login/build.gradle | 2 +- .../java/authentication/username-password/mfa/build.gradle | 2 +- .../user-details-service/custom-user/build.gradle | 2 +- servlet/spring-boot/java/cas/login/build.gradle | 2 +- servlet/spring-boot/java/hello-security-explicit/build.gradle | 2 +- servlet/spring-boot/java/hello-security/build.gradle | 2 +- servlet/spring-boot/java/hello/build.gradle | 2 +- servlet/spring-boot/java/jwt/login/build.gradle | 2 +- servlet/spring-boot/java/ldap/build.gradle | 2 +- .../spring-boot/java/oauth2/authorization-server/build.gradle | 2 +- servlet/spring-boot/java/oauth2/login/build.gradle | 2 +- .../java/oauth2/resource-server/hello-security/build.gradle | 2 +- .../spring-boot/java/oauth2/resource-server/jwe/build.gradle | 2 +- .../java/oauth2/resource-server/multi-tenancy/build.gradle | 2 +- .../spring-boot/java/oauth2/resource-server/opaque/build.gradle | 2 +- .../spring-boot/java/oauth2/resource-server/static/build.gradle | 2 +- servlet/spring-boot/java/oauth2/webclient/build.gradle | 2 +- servlet/spring-boot/java/saml2/custom-urls/build.gradle | 2 +- servlet/spring-boot/java/saml2/login-single-tenant/build.gradle | 2 +- servlet/spring-boot/java/saml2/login/build.gradle | 2 +- .../spring-boot/java/saml2/refreshable-metadata/build.gradle | 2 +- .../java/saml2/saml-extension-federation/build.gradle | 2 +- .../maximum-sessions-prevent-login/build.gradle | 2 +- .../java/session-management/maximum-sessions/build.gradle | 2 +- servlet/xml/java/contacts/build.gradle | 2 +- servlet/xml/java/dms/build.gradle | 2 +- servlet/xml/java/helloworld/build.gradle | 2 +- servlet/xml/java/preauth/build.gradle | 2 +- servlet/xml/java/saml2/login-logout/build.gradle | 2 +- 54 files changed, 54 insertions(+), 54 deletions(-) diff --git a/reactive/rsocket/hello-security/build.gradle b/reactive/rsocket/hello-security/build.gradle index 663a5bada..91ef7b683 100644 --- a/reactive/rsocket/hello-security/build.gradle +++ b/reactive/rsocket/hello-security/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux-fn/hello-security/build.gradle b/reactive/webflux-fn/hello-security/build.gradle index 9db602ab7..7cb2768ae 100644 --- a/reactive/webflux-fn/hello-security/build.gradle +++ b/reactive/webflux-fn/hello-security/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux-fn/hello/build.gradle b/reactive/webflux-fn/hello/build.gradle index d535ee97d..08f5714dc 100644 --- a/reactive/webflux-fn/hello/build.gradle +++ b/reactive/webflux-fn/hello/build.gradle @@ -22,5 +22,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/authentication/username-password/form/build.gradle b/reactive/webflux/java/authentication/username-password/form/build.gradle index 5c0ac1939..bb6cf05e4 100644 --- a/reactive/webflux/java/authentication/username-password/form/build.gradle +++ b/reactive/webflux/java/authentication/username-password/form/build.gradle @@ -28,5 +28,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/authentication/x509/build.gradle b/reactive/webflux/java/authentication/x509/build.gradle index 022cee503..bd09c7437 100644 --- a/reactive/webflux/java/authentication/x509/build.gradle +++ b/reactive/webflux/java/authentication/x509/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/hello-security-explicit/build.gradle b/reactive/webflux/java/hello-security-explicit/build.gradle index 561f2a58b..8585d87cc 100644 --- a/reactive/webflux/java/hello-security-explicit/build.gradle +++ b/reactive/webflux/java/hello-security-explicit/build.gradle @@ -26,5 +26,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/hello-security/build.gradle b/reactive/webflux/java/hello-security/build.gradle index 6fb22fdb3..9f7a3c358 100644 --- a/reactive/webflux/java/hello-security/build.gradle +++ b/reactive/webflux/java/hello-security/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/hello/build.gradle b/reactive/webflux/java/hello/build.gradle index d535ee97d..08f5714dc 100644 --- a/reactive/webflux/java/hello/build.gradle +++ b/reactive/webflux/java/hello/build.gradle @@ -22,5 +22,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/method/build.gradle b/reactive/webflux/java/method/build.gradle index 68ffca173..1bfb3236f 100644 --- a/reactive/webflux/java/method/build.gradle +++ b/reactive/webflux/java/method/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/oauth2/login/build.gradle b/reactive/webflux/java/oauth2/login/build.gradle index 860f6c5f5..ff0f9d34c 100644 --- a/reactive/webflux/java/oauth2/login/build.gradle +++ b/reactive/webflux/java/oauth2/login/build.gradle @@ -27,5 +27,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/oauth2/resource-server/build.gradle b/reactive/webflux/java/oauth2/resource-server/build.gradle index f145f45e1..cf3051a9c 100644 --- a/reactive/webflux/java/oauth2/resource-server/build.gradle +++ b/reactive/webflux/java/oauth2/resource-server/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/reactive/webflux/java/oauth2/webclient/build.gradle b/reactive/webflux/java/oauth2/webclient/build.gradle index 0f0316a2c..789593146 100644 --- a/reactive/webflux/java/oauth2/webclient/build.gradle +++ b/reactive/webflux/java/oauth2/webclient/build.gradle @@ -27,5 +27,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/aspectj/build.gradle b/servlet/java-configuration/aspectj/build.gradle index abdff3a65..07a9b46c4 100644 --- a/servlet/java-configuration/aspectj/build.gradle +++ b/servlet/java-configuration/aspectj/build.gradle @@ -42,7 +42,7 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/authentication/preauth/build.gradle b/servlet/java-configuration/authentication/preauth/build.gradle index 71cec235c..0d3322317 100644 --- a/servlet/java-configuration/authentication/preauth/build.gradle +++ b/servlet/java-configuration/authentication/preauth/build.gradle @@ -37,5 +37,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/authentication/remember-me/build.gradle b/servlet/java-configuration/authentication/remember-me/build.gradle index 076734925..ab20db141 100644 --- a/servlet/java-configuration/authentication/remember-me/build.gradle +++ b/servlet/java-configuration/authentication/remember-me/build.gradle @@ -40,5 +40,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/authentication/username-password/form/build.gradle b/servlet/java-configuration/authentication/username-password/form/build.gradle index eb6696ab7..544fa2b4a 100644 --- a/servlet/java-configuration/authentication/username-password/form/build.gradle +++ b/servlet/java-configuration/authentication/username-password/form/build.gradle @@ -35,5 +35,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/authentication/username-password/in-memory/build.gradle b/servlet/java-configuration/authentication/username-password/in-memory/build.gradle index 0b1f2cdd6..457f6679a 100644 --- a/servlet/java-configuration/authentication/username-password/in-memory/build.gradle +++ b/servlet/java-configuration/authentication/username-password/in-memory/build.gradle @@ -35,5 +35,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/authentication/username-password/jdbc/build.gradle b/servlet/java-configuration/authentication/username-password/jdbc/build.gradle index 50e6dcd6b..c1ff26644 100644 --- a/servlet/java-configuration/authentication/username-password/jdbc/build.gradle +++ b/servlet/java-configuration/authentication/username-password/jdbc/build.gradle @@ -37,5 +37,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/authentication/username-password/ldap/build.gradle b/servlet/java-configuration/authentication/username-password/ldap/build.gradle index a610b18c7..f377f7300 100644 --- a/servlet/java-configuration/authentication/username-password/ldap/build.gradle +++ b/servlet/java-configuration/authentication/username-password/ldap/build.gradle @@ -38,5 +38,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/authentication/x509/build.gradle b/servlet/java-configuration/authentication/x509/build.gradle index 66403b0b2..644258488 100644 --- a/servlet/java-configuration/authentication/x509/build.gradle +++ b/servlet/java-configuration/authentication/x509/build.gradle @@ -36,5 +36,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/data/build.gradle b/servlet/java-configuration/data/build.gradle index 105b08928..b715d86c6 100644 --- a/servlet/java-configuration/data/build.gradle +++ b/servlet/java-configuration/data/build.gradle @@ -44,5 +44,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/hello-mvc-security/build.gradle b/servlet/java-configuration/hello-mvc-security/build.gradle index eb6696ab7..544fa2b4a 100644 --- a/servlet/java-configuration/hello-mvc-security/build.gradle +++ b/servlet/java-configuration/hello-mvc-security/build.gradle @@ -35,5 +35,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/hello-security-explicit/build.gradle b/servlet/java-configuration/hello-security-explicit/build.gradle index 9c86783a8..8a9c87fac 100644 --- a/servlet/java-configuration/hello-security-explicit/build.gradle +++ b/servlet/java-configuration/hello-security-explicit/build.gradle @@ -36,5 +36,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/hello-security/build.gradle b/servlet/java-configuration/hello-security/build.gradle index 9c86783a8..8a9c87fac 100644 --- a/servlet/java-configuration/hello-security/build.gradle +++ b/servlet/java-configuration/hello-security/build.gradle @@ -36,5 +36,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/max-sessions/build.gradle b/servlet/java-configuration/max-sessions/build.gradle index 053361ccb..e7a1ba6a4 100644 --- a/servlet/java-configuration/max-sessions/build.gradle +++ b/servlet/java-configuration/max-sessions/build.gradle @@ -38,5 +38,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/java-configuration/saml2/login/build.gradle b/servlet/java-configuration/saml2/login/build.gradle index 4cb15e35b..8e5865f01 100644 --- a/servlet/java-configuration/saml2/login/build.gradle +++ b/servlet/java-configuration/saml2/login/build.gradle @@ -63,5 +63,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/authentication/username-password/mfa/build.gradle b/servlet/spring-boot/java/authentication/username-password/mfa/build.gradle index 32d5bd0e6..801230520 100644 --- a/servlet/spring-boot/java/authentication/username-password/mfa/build.gradle +++ b/servlet/spring-boot/java/authentication/username-password/mfa/build.gradle @@ -27,5 +27,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/authentication/username-password/user-details-service/custom-user/build.gradle b/servlet/spring-boot/java/authentication/username-password/user-details-service/custom-user/build.gradle index 853acfd44..2c3098007 100644 --- a/servlet/spring-boot/java/authentication/username-password/user-details-service/custom-user/build.gradle +++ b/servlet/spring-boot/java/authentication/username-password/user-details-service/custom-user/build.gradle @@ -23,5 +23,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/cas/login/build.gradle b/servlet/spring-boot/java/cas/login/build.gradle index 66974e09a..94428f57a 100644 --- a/servlet/spring-boot/java/cas/login/build.gradle +++ b/servlet/spring-boot/java/cas/login/build.gradle @@ -26,5 +26,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/hello-security-explicit/build.gradle b/servlet/spring-boot/java/hello-security-explicit/build.gradle index a63e7f946..8b75a7f4e 100644 --- a/servlet/spring-boot/java/hello-security-explicit/build.gradle +++ b/servlet/spring-boot/java/hello-security-explicit/build.gradle @@ -26,5 +26,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/hello-security/build.gradle b/servlet/spring-boot/java/hello-security/build.gradle index 11c6462c2..315b4af5a 100644 --- a/servlet/spring-boot/java/hello-security/build.gradle +++ b/servlet/spring-boot/java/hello-security/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/hello/build.gradle b/servlet/spring-boot/java/hello/build.gradle index 25f9e125e..08be9cc78 100644 --- a/servlet/spring-boot/java/hello/build.gradle +++ b/servlet/spring-boot/java/hello/build.gradle @@ -22,5 +22,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/jwt/login/build.gradle b/servlet/spring-boot/java/jwt/login/build.gradle index db6d86f8f..b44a968ac 100644 --- a/servlet/spring-boot/java/jwt/login/build.gradle +++ b/servlet/spring-boot/java/jwt/login/build.gradle @@ -22,5 +22,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/ldap/build.gradle b/servlet/spring-boot/java/ldap/build.gradle index 8fc73e2b8..f74f3b0fc 100644 --- a/servlet/spring-boot/java/ldap/build.gradle +++ b/servlet/spring-boot/java/ldap/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/authorization-server/build.gradle b/servlet/spring-boot/java/oauth2/authorization-server/build.gradle index 4efcd5ade..92a0e9f88 100644 --- a/servlet/spring-boot/java/oauth2/authorization-server/build.gradle +++ b/servlet/spring-boot/java/oauth2/authorization-server/build.gradle @@ -25,5 +25,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/login/build.gradle b/servlet/spring-boot/java/oauth2/login/build.gradle index 0748ff78d..6b5d48d37 100644 --- a/servlet/spring-boot/java/oauth2/login/build.gradle +++ b/servlet/spring-boot/java/oauth2/login/build.gradle @@ -27,5 +27,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/resource-server/hello-security/build.gradle b/servlet/spring-boot/java/oauth2/resource-server/hello-security/build.gradle index 6db14ffbf..d91960449 100644 --- a/servlet/spring-boot/java/oauth2/resource-server/hello-security/build.gradle +++ b/servlet/spring-boot/java/oauth2/resource-server/hello-security/build.gradle @@ -24,5 +24,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/resource-server/jwe/build.gradle b/servlet/spring-boot/java/oauth2/resource-server/jwe/build.gradle index e0bedea2d..1d5c84ae5 100644 --- a/servlet/spring-boot/java/oauth2/resource-server/jwe/build.gradle +++ b/servlet/spring-boot/java/oauth2/resource-server/jwe/build.gradle @@ -40,5 +40,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/resource-server/multi-tenancy/build.gradle b/servlet/spring-boot/java/oauth2/resource-server/multi-tenancy/build.gradle index 148afc0ab..830593f05 100644 --- a/servlet/spring-boot/java/oauth2/resource-server/multi-tenancy/build.gradle +++ b/servlet/spring-boot/java/oauth2/resource-server/multi-tenancy/build.gradle @@ -41,5 +41,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/resource-server/opaque/build.gradle b/servlet/spring-boot/java/oauth2/resource-server/opaque/build.gradle index 148afc0ab..830593f05 100644 --- a/servlet/spring-boot/java/oauth2/resource-server/opaque/build.gradle +++ b/servlet/spring-boot/java/oauth2/resource-server/opaque/build.gradle @@ -41,5 +41,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/resource-server/static/build.gradle b/servlet/spring-boot/java/oauth2/resource-server/static/build.gradle index e0bedea2d..1d5c84ae5 100644 --- a/servlet/spring-boot/java/oauth2/resource-server/static/build.gradle +++ b/servlet/spring-boot/java/oauth2/resource-server/static/build.gradle @@ -40,5 +40,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/oauth2/webclient/build.gradle b/servlet/spring-boot/java/oauth2/webclient/build.gradle index 4734853c8..2129a054d 100644 --- a/servlet/spring-boot/java/oauth2/webclient/build.gradle +++ b/servlet/spring-boot/java/oauth2/webclient/build.gradle @@ -45,5 +45,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/saml2/custom-urls/build.gradle b/servlet/spring-boot/java/saml2/custom-urls/build.gradle index cc1f577cc..9e247b6cb 100644 --- a/servlet/spring-boot/java/saml2/custom-urls/build.gradle +++ b/servlet/spring-boot/java/saml2/custom-urls/build.gradle @@ -31,5 +31,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/saml2/login-single-tenant/build.gradle b/servlet/spring-boot/java/saml2/login-single-tenant/build.gradle index b546fa7e5..8b55a4a27 100644 --- a/servlet/spring-boot/java/saml2/login-single-tenant/build.gradle +++ b/servlet/spring-boot/java/saml2/login-single-tenant/build.gradle @@ -33,5 +33,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/saml2/login/build.gradle b/servlet/spring-boot/java/saml2/login/build.gradle index 36263ee40..e381d3334 100644 --- a/servlet/spring-boot/java/saml2/login/build.gradle +++ b/servlet/spring-boot/java/saml2/login/build.gradle @@ -33,5 +33,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/saml2/refreshable-metadata/build.gradle b/servlet/spring-boot/java/saml2/refreshable-metadata/build.gradle index b546fa7e5..8b55a4a27 100644 --- a/servlet/spring-boot/java/saml2/refreshable-metadata/build.gradle +++ b/servlet/spring-boot/java/saml2/refreshable-metadata/build.gradle @@ -33,5 +33,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/saml2/saml-extension-federation/build.gradle b/servlet/spring-boot/java/saml2/saml-extension-federation/build.gradle index cc1f577cc..9e247b6cb 100644 --- a/servlet/spring-boot/java/saml2/saml-extension-federation/build.gradle +++ b/servlet/spring-boot/java/saml2/saml-extension-federation/build.gradle @@ -31,5 +31,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/session-management/maximum-sessions-prevent-login/build.gradle b/servlet/spring-boot/java/session-management/maximum-sessions-prevent-login/build.gradle index 216590544..76e6d59e3 100644 --- a/servlet/spring-boot/java/session-management/maximum-sessions-prevent-login/build.gradle +++ b/servlet/spring-boot/java/session-management/maximum-sessions-prevent-login/build.gradle @@ -18,5 +18,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/spring-boot/java/session-management/maximum-sessions/build.gradle b/servlet/spring-boot/java/session-management/maximum-sessions/build.gradle index 216590544..76e6d59e3 100644 --- a/servlet/spring-boot/java/session-management/maximum-sessions/build.gradle +++ b/servlet/spring-boot/java/session-management/maximum-sessions/build.gradle @@ -18,5 +18,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/xml/java/contacts/build.gradle b/servlet/xml/java/contacts/build.gradle index c8116a253..e8b3c5bf4 100644 --- a/servlet/xml/java/contacts/build.gradle +++ b/servlet/xml/java/contacts/build.gradle @@ -51,5 +51,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/xml/java/dms/build.gradle b/servlet/xml/java/dms/build.gradle index 5100c1918..b8e88528d 100644 --- a/servlet/xml/java/dms/build.gradle +++ b/servlet/xml/java/dms/build.gradle @@ -41,5 +41,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/xml/java/helloworld/build.gradle b/servlet/xml/java/helloworld/build.gradle index 368d4bb44..844517edd 100644 --- a/servlet/xml/java/helloworld/build.gradle +++ b/servlet/xml/java/helloworld/build.gradle @@ -37,5 +37,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/xml/java/preauth/build.gradle b/servlet/xml/java/preauth/build.gradle index f422ec540..80243e151 100644 --- a/servlet/xml/java/preauth/build.gradle +++ b/servlet/xml/java/preauth/build.gradle @@ -31,5 +31,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + } diff --git a/servlet/xml/java/saml2/login-logout/build.gradle b/servlet/xml/java/saml2/login-logout/build.gradle index 1de40ec13..eb69ecbdc 100644 --- a/servlet/xml/java/saml2/login-logout/build.gradle +++ b/servlet/xml/java/saml2/login-logout/build.gradle @@ -46,5 +46,5 @@ dependencies { tasks.withType(Test).configureEach { useJUnitPlatform() - outputs.upToDateWhen { false } + }