Skip to content

Commit b2dbefc

Browse files
committed
Prevent spring-core-coroutines deployment
See gh-19975
1 parent d2fa553 commit b2dbefc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ext {
2525
linkScmDevConnection = "scm:git:ssh://[email protected]:spring-projects/spring-framework.git"
2626

2727
moduleProjects = subprojects.findAll {
28-
!it.name.equals("spring-build-src") && !it.name.equals("spring-framework-bom") && !it.name.equals("spring-core-coroutines")
28+
(it.name != "spring-build-src") && (it.name != "spring-framework-bom") && (it.name != "spring-core-coroutines")
2929
}
3030

3131
aspectjVersion = "1.9.2"
@@ -195,7 +195,7 @@ configure(allprojects) { project ->
195195
] as String[]
196196
}
197197

198-
configure(subprojects - project(":spring-build-src")) { subproject ->
198+
configure(subprojects.findAll { (it.name != "spring-build-src") && (it.name != "spring-core-coroutines") } ) { subproject ->
199199
apply from: "${gradleScriptDir}/publish-maven.gradle"
200200

201201
jar {

0 commit comments

Comments
 (0)