File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ subprojects {
16
16
sourceCompatibility = ' 17'
17
17
18
18
repositories {
19
+ mavenLocal()
19
20
mavenCentral()
20
21
maven { url ' https://repo.spring.io/milestone' }
21
22
if (version. endsWith(' SNAPSHOT' )) {
@@ -28,9 +29,6 @@ subprojects {
28
29
29
30
dependencyManagement {
30
31
imports {
31
- mavenBom " io.projectreactor:reactor-bom:${ reactorBomVersion} "
32
- mavenBom " io.rsocket:rsocket-bom:${ rsocketVersion} "
33
- mavenBom " org.junit:junit-bom:${ junitJupiterVersion} "
34
32
mavenBom " org.springframework.boot:spring-boot-dependencies:${ springBootVersion} "
35
33
}
36
34
@@ -39,6 +37,12 @@ subprojects {
39
37
}
40
38
}
41
39
40
+ dependencies {
41
+ implementation platform(" io.projectreactor:reactor-bom:${ reactorBomVersion} " )
42
+ implementation platform(" io.rsocket:rsocket-bom:${ rsocketVersion} " )
43
+ implementation platform(" org.junit:junit-bom:${ junitJupiterVersion} " )
44
+ }
45
+
42
46
java {
43
47
withSourcesJar()
44
48
withJavadocJar()
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ subprojects {
39
39
}
40
40
versionMapping {
41
41
usage(' java-api' ) {
42
- fromResolutionResult()
42
+ fromResolutionResult(' runtimeClasspath ' )
43
43
}
44
44
usage(' java-runtime' ) {
45
45
fromResolutionResult()
You can’t perform that action at this time.
0 commit comments