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 663a5ba..91ef7b6 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 9db602a..7cb2768 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 d535ee9..08f5714 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 5c0ac19..bb6cf05 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 022cee5..bd09c74 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 561f2a5..8585d87 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 6fb22fd..9f7a3c3 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 d535ee9..08f5714 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 68ffca1..1bfb323 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 860f6c5..ff0f9d3 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 f145f45..cf3051a 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 0f0316a..7895931 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 abdff3a..07a9b46 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 71cec23..0d33223 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 0767349..ab20db1 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 eb6696a..544fa2b 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 0b1f2cd..457f667 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 50e6dcd..c1ff266 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 a610b18..f377f73 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 66403b0..6442584 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 105b089..b715d86 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 eb6696a..544fa2b 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 9c86783..8a9c87f 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 9c86783..8a9c87f 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 053361c..e7a1ba6 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 4cb15e3..8e5865f 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 32d5bd0..8012305 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 853acfd..2c30980 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 66974e0..94428f5 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 a63e7f9..8b75a7f 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 11c6462..315b4af 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 25f9e12..08be9cc 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 db6d86f..b44a968 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 8fc73e2..f74f3b0 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 4efcd5a..92a0e9f 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 0748ff7..6b5d48d 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 6db14ff..d919604 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 e0bedea..1d5c84a 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 148afc0..830593f 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 148afc0..830593f 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 e0bedea..1d5c84a 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 4734853..2129a05 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 cc1f577..9e247b6 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 b546fa7..8b55a4a 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 36263ee..e381d33 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 b546fa7..8b55a4a 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 cc1f577..9e247b6 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 2165905..76e6d59 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 2165905..76e6d59 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 c8116a2..e8b3c5b 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 5100c19..b8e8852 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 368d4bb..844517e 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 f422ec5..80243e1 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 1de40ec..eb69ecb 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 } + }