From 2bcfea77a80207207a6d128eafe1716708c80230 Mon Sep 17 00:00:00 2001 From: Roberto Perez Alcolea Date: Mon, 10 Dec 2018 16:19:37 -0800 Subject: [PATCH] Revert "Handle more gradle deprecation warnings to fail integration tests" --- src/main/groovy/nebula/test/BaseIntegrationSpec.groovy | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy b/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy index e8395f6..917c9db 100644 --- a/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy +++ b/src/main/groovy/nebula/test/BaseIntegrationSpec.groovy @@ -76,10 +76,7 @@ abstract class BaseIntegrationSpec extends Specification { protected static void checkForDeprecations(String output) { def deprecations = output.readLines().findAll { - it.contains("has been deprecated and is scheduled to be removed in Gradle") || - it.contains("Deprecated Gradle features were used in this build") || - it.contains("has been deprecated. This is scheduled to be removed in Gradle") || - it.contains("This behaviour has been deprecated and is scheduled to be removed in Gradle") + it.contains("has been deprecated and is scheduled to be removed in Gradle") || it.contains("Deprecated Gradle features were used in this build") } // temporary for known issue with overwriting task // overridden task expected to not be needed in future version