From b2dbefcfc53222befcf45a1fda6460c6b84c067e Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Tue, 2 Apr 2019 16:05:18 +0200 Subject: [PATCH] Prevent spring-core-coroutines deployment See gh-19975 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 51a261a7ea6..082e84c5109 100644 --- a/build.gradle +++ b/build.gradle @@ -25,7 +25,7 @@ ext { linkScmDevConnection = "scm:git:ssh://git@github.com:spring-projects/spring-framework.git" moduleProjects = subprojects.findAll { - !it.name.equals("spring-build-src") && !it.name.equals("spring-framework-bom") && !it.name.equals("spring-core-coroutines") + (it.name != "spring-build-src") && (it.name != "spring-framework-bom") && (it.name != "spring-core-coroutines") } aspectjVersion = "1.9.2" @@ -195,7 +195,7 @@ configure(allprojects) { project -> ] as String[] } -configure(subprojects - project(":spring-build-src")) { subproject -> +configure(subprojects.findAll { (it.name != "spring-build-src") && (it.name != "spring-core-coroutines") } ) { subproject -> apply from: "${gradleScriptDir}/publish-maven.gradle" jar {