File tree 10 files changed +14
-13
lines changed
src/main/kotlin/org/springframework/core
10 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ classes/
21
21
/build
22
22
buildSrc /build
23
23
/spring- * /build
24
+ /spring-core /kotlin-coroutines /build
25
+ /framework-bom /build
24
26
/integration-tests /build
25
27
/src /asciidoc /build
26
28
target /
Original file line number Diff line number Diff line change @@ -17,9 +17,7 @@ plugins {
17
17
}
18
18
19
19
ext {
20
- moduleProjects = subprojects. findAll {
21
- (it. name != " spring-framework-bom" ) && (it. name != " spring-core-coroutines" ) && (it. name != " integration-tests" )
22
- }
20
+ moduleProjects = subprojects. findAll { it. name. startsWith(" spring-" ) }
23
21
24
22
aspectjVersion = " 1.9.4"
25
23
coroutinesVersion = " 1.3.0-RC2"
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ include "spring-context"
5
5
include " spring-context-support"
6
6
include " spring-context-indexer"
7
7
include " spring-core"
8
- include " spring-core-coroutines"
8
+ include " kotlin-coroutines"
9
+ project(' :kotlin-coroutines' ). projectDir = file(' spring-core/kotlin-coroutines' )
9
10
include " spring-expression"
10
11
include " spring-instrument"
11
12
include " spring-jcl"
@@ -20,7 +21,7 @@ include "spring-web"
20
21
include " spring-webmvc"
21
22
include " spring-webflux"
22
23
include " spring-websocket"
23
- include " spring- framework-bom"
24
+ include " framework-bom"
24
25
include " integration-tests"
25
26
26
27
rootProject. name = " spring"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ dependencies {
11
11
}
12
12
13
13
// Avoid publishing coroutines JAR to the artifact repository
14
- if (project . hasProperty (" artifactoryPublish" )) {
14
+ if (pluginManager . hasPlugin (" artifactoryPublish" )) {
15
15
artifactoryPublish. skip = true
16
16
}
17
17
File renamed without changes.
Original file line number Diff line number Diff line change @@ -70,12 +70,12 @@ dependencies {
70
70
cglib(" cglib:cglib:${ cglibVersion} @jar" )
71
71
objenesis(" org.objenesis:objenesis:${ objenesisVersion} @jar" )
72
72
jarjar(" org.pantsbuild:jarjar:1.7.2" )
73
- coroutines(project(" :spring-core -coroutines" ))
73
+ coroutines(project(" :kotlin -coroutines" ))
74
74
75
75
compile(files(cglibRepackJar))
76
76
compile(files(objenesisRepackJar))
77
77
compile(project(" :spring-jcl" ))
78
- compileOnly(project(" :spring-core -coroutines" ))
78
+ compileOnly(project(" :kotlin -coroutines" ))
79
79
optional(" net.sf.jopt-simple:jopt-simple:5.0.4" )
80
80
optional(" org.aspectj:aspectjweaver:${ aspectjVersion} " )
81
81
optional(" org.jetbrains.kotlin:kotlin-reflect" )
@@ -94,7 +94,7 @@ dependencies {
94
94
testCompile(" com.fasterxml.woodstox:woodstox-core:5.2.0" ) {
95
95
exclude group : " stax" , module : " stax-api"
96
96
}
97
- testCompile(project(" :spring-core -coroutines" ))
97
+ testCompile(project(" :kotlin -coroutines" ))
98
98
}
99
99
100
100
jar {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencyManagement {
12
12
dependencies {
13
13
compile(project(" :spring-beans" ))
14
14
compile(project(" :spring-core" ))
15
- compileOnly(project(" :spring-core -coroutines" ))
15
+ compileOnly(project(" :kotlin -coroutines" ))
16
16
optional(project(" :spring-context" ))
17
17
optional(project(" :spring-oxm" ))
18
18
optional(" io.projectreactor.netty:reactor-netty" )
@@ -37,7 +37,7 @@ dependencies {
37
37
testCompile(" org.jetbrains.kotlin:kotlin-stdlib" )
38
38
testCompile(" org.xmlunit:xmlunit-assertj:2.6.2" )
39
39
testCompile(" org.xmlunit:xmlunit-matchers:2.6.2" )
40
- testCompile(project(" :spring-core -coroutines" ))
40
+ testCompile(project(" :kotlin -coroutines" ))
41
41
testRuntime(" com.sun.xml.bind:jaxb-core:2.3.0.1" )
42
42
testRuntime(" com.sun.xml.bind:jaxb-impl:2.3.0.1" )
43
43
testRuntime(" com.sun.activation:javax.activation:1.2.0" )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ dependencies {
15
15
compile(project(" :spring-core" ))
16
16
compile(project(" :spring-web" ))
17
17
compile(" io.projectreactor:reactor-core" )
18
- compileOnly(project(" :spring-core -coroutines" ))
18
+ compileOnly(project(" :kotlin -coroutines" ))
19
19
optional(project(" :spring-context" ))
20
20
optional(project(" :spring-context-support" )) // for FreeMarker support
21
21
optional(" javax.servlet:javax.servlet-api:4.0.1" )
@@ -57,7 +57,7 @@ dependencies {
57
57
testCompile(" org.eclipse.jetty:jetty-servlet" )
58
58
testCompile(" org.eclipse.jetty:jetty-reactive-httpclient:1.0.3" )
59
59
testCompile(" com.squareup.okhttp3:mockwebserver:3.14.2" )
60
- testCompile(project(" :spring-core -coroutines" ))
60
+ testCompile(project(" :kotlin -coroutines" ))
61
61
testCompile(" org.jetbrains.kotlin:kotlin-script-runtime" )
62
62
testRuntime(" org.jetbrains.kotlin:kotlin-scripting-jsr223-embeddable" )
63
63
testRuntime(" org.jruby:jruby:9.2.7.0" )
You can’t perform that action at this time.
0 commit comments