File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 25
25
linkScmDevConnection
= " scm:git:ssh://[email protected] :spring-projects/spring-framework.git"
26
26
27
27
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" )
29
29
}
30
30
31
31
aspectjVersion = " 1.9.2"
@@ -195,7 +195,7 @@ configure(allprojects) { project ->
195
195
] as String []
196
196
}
197
197
198
- configure(subprojects - project( " : spring-build-src" )) { subproject ->
198
+ configure(subprojects. findAll { (it . name != " spring-build-src" ) && (it . name != " spring-core-coroutines " ) } ) { subproject ->
199
199
apply from : " ${ gradleScriptDir} /publish-maven.gradle"
200
200
201
201
jar {
You can’t perform that action at this time.
0 commit comments