Pārlūkot izejas kodu

Prevent gradle cache on tests

Closes gh-54
Eleftheria Stein 3 gadi atpakaļ
vecāks
revīzija
dec2e57170
48 mainītis faili ar 48 papildinājumiem un 0 dzēšanām
  1. 1 0
      reactive/rsocket/hello-security/build.gradle
  2. 1 0
      reactive/webflux-fn/hello-security/build.gradle
  3. 1 0
      reactive/webflux-fn/hello/build.gradle
  4. 1 0
      reactive/webflux/java/authentication/username-password/form/build.gradle
  5. 1 0
      reactive/webflux/java/authentication/x509/build.gradle
  6. 1 0
      reactive/webflux/java/hello-security-explicit/build.gradle
  7. 1 0
      reactive/webflux/java/hello-security/build.gradle
  8. 1 0
      reactive/webflux/java/hello/build.gradle
  9. 1 0
      reactive/webflux/java/method/build.gradle
  10. 1 0
      reactive/webflux/java/oauth2/login/build.gradle
  11. 1 0
      reactive/webflux/java/oauth2/resource-server/build.gradle
  12. 1 0
      reactive/webflux/java/oauth2/webclient/build.gradle
  13. 1 0
      servlet/java-configuration/aspectj/build.gradle
  14. 1 0
      servlet/java-configuration/authentication/preauth/build.gradle
  15. 1 0
      servlet/java-configuration/authentication/remember-me/build.gradle
  16. 1 0
      servlet/java-configuration/authentication/username-password/form/build.gradle
  17. 1 0
      servlet/java-configuration/authentication/username-password/in-memory/build.gradle
  18. 1 0
      servlet/java-configuration/authentication/username-password/jdbc/build.gradle
  19. 1 0
      servlet/java-configuration/authentication/username-password/ldap/build.gradle
  20. 1 0
      servlet/java-configuration/authentication/x509/build.gradle
  21. 1 0
      servlet/java-configuration/data/build.gradle
  22. 1 0
      servlet/java-configuration/hello-mvc-security/build.gradle
  23. 1 0
      servlet/java-configuration/hello-security-explicit/build.gradle
  24. 1 0
      servlet/java-configuration/hello-security/build.gradle
  25. 1 0
      servlet/java-configuration/max-sessions/build.gradle
  26. 1 0
      servlet/java-configuration/saml2/login/build.gradle
  27. 1 0
      servlet/spring-boot/java/authentication/username-password/mfa/build.gradle
  28. 1 0
      servlet/spring-boot/java/authentication/username-password/user-details-service/custom-user/build.gradle
  29. 1 0
      servlet/spring-boot/java/hello-security-explicit/build.gradle
  30. 1 0
      servlet/spring-boot/java/hello-security/build.gradle
  31. 1 0
      servlet/spring-boot/java/hello/build.gradle
  32. 1 0
      servlet/spring-boot/java/jwt/login/build.gradle
  33. 1 0
      servlet/spring-boot/java/ldap/build.gradle
  34. 1 0
      servlet/spring-boot/java/oauth2/authorization-server/build.gradle
  35. 1 0
      servlet/spring-boot/java/oauth2/login/build.gradle
  36. 1 0
      servlet/spring-boot/java/oauth2/resource-server/hello-security/build.gradle
  37. 1 0
      servlet/spring-boot/java/oauth2/resource-server/jwe/build.gradle
  38. 1 0
      servlet/spring-boot/java/oauth2/resource-server/multi-tenancy/build.gradle
  39. 1 0
      servlet/spring-boot/java/oauth2/resource-server/opaque/build.gradle
  40. 1 0
      servlet/spring-boot/java/oauth2/resource-server/static/build.gradle
  41. 1 0
      servlet/spring-boot/java/oauth2/webclient/build.gradle
  42. 1 0
      servlet/spring-boot/java/saml2/login-single-tenant/build.gradle
  43. 1 0
      servlet/spring-boot/java/saml2/login/build.gradle
  44. 1 0
      servlet/spring-boot/java/saml2/refreshable-metadata/build.gradle
  45. 1 0
      servlet/xml/java/contacts/build.gradle
  46. 1 0
      servlet/xml/java/dms/build.gradle
  47. 1 0
      servlet/xml/java/helloworld/build.gradle
  48. 1 0
      servlet/xml/java/preauth/build.gradle

+ 1 - 0
reactive/rsocket/hello-security/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux-fn/hello-security/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux-fn/hello/build.gradle

@@ -19,4 +19,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/authentication/username-password/form/build.gradle

@@ -25,4 +25,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/authentication/x509/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/hello-security-explicit/build.gradle

@@ -23,4 +23,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/hello-security/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/hello/build.gradle

@@ -19,4 +19,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/method/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/oauth2/login/build.gradle

@@ -24,4 +24,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/oauth2/resource-server/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
reactive/webflux/java/oauth2/webclient/build.gradle

@@ -24,4 +24,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/aspectj/build.gradle

@@ -41,6 +41,7 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }
 
 

+ 1 - 0
servlet/java-configuration/authentication/preauth/build.gradle

@@ -34,4 +34,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/authentication/remember-me/build.gradle

@@ -34,4 +34,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/authentication/username-password/form/build.gradle

@@ -34,4 +34,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/authentication/username-password/in-memory/build.gradle

@@ -34,4 +34,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/authentication/username-password/jdbc/build.gradle

@@ -36,4 +36,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/authentication/username-password/ldap/build.gradle

@@ -37,4 +37,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/authentication/x509/build.gradle

@@ -32,4 +32,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/data/build.gradle

@@ -33,4 +33,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/hello-mvc-security/build.gradle

@@ -34,4 +34,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/hello-security-explicit/build.gradle

@@ -35,4 +35,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/hello-security/build.gradle

@@ -35,4 +35,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/max-sessions/build.gradle

@@ -34,4 +34,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/java-configuration/saml2/login/build.gradle

@@ -63,4 +63,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/authentication/username-password/mfa/build.gradle

@@ -24,4 +24,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/authentication/username-password/user-details-service/custom-user/build.gradle

@@ -20,4 +20,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/hello-security-explicit/build.gradle

@@ -23,4 +23,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/hello-security/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/hello/build.gradle

@@ -19,4 +19,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/jwt/login/build.gradle

@@ -19,4 +19,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/ldap/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/authorization-server/build.gradle

@@ -22,4 +22,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/login/build.gradle

@@ -24,4 +24,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/resource-server/hello-security/build.gradle

@@ -21,4 +21,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/resource-server/jwe/build.gradle

@@ -37,4 +37,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/resource-server/multi-tenancy/build.gradle

@@ -38,4 +38,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/resource-server/opaque/build.gradle

@@ -38,4 +38,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/resource-server/static/build.gradle

@@ -37,4 +37,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/oauth2/webclient/build.gradle

@@ -42,4 +42,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/saml2/login-single-tenant/build.gradle

@@ -30,4 +30,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/saml2/login/build.gradle

@@ -30,4 +30,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/spring-boot/java/saml2/refreshable-metadata/build.gradle

@@ -30,4 +30,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/xml/java/contacts/build.gradle

@@ -50,4 +50,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/xml/java/dms/build.gradle

@@ -40,4 +40,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/xml/java/helloworld/build.gradle

@@ -36,4 +36,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }

+ 1 - 0
servlet/xml/java/preauth/build.gradle

@@ -29,4 +29,5 @@ dependencies {
 
 tasks.withType(Test).configureEach {
 	useJUnitPlatform()
+	outputs.upToDateWhen { false }
 }