Skip to content

Commit d29c16c

Browse files
committed
Merge branch '1.0.x'
See gh-890 Signed-off-by: Rossen Stoyanchev <[email protected]>
2 parents 2dbf61d + 1673eed commit d29c16c

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

build.gradle

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ subprojects {
2727
apply plugin: 'io.spring.dependency-management'
2828
apply plugin: 'com.github.sherter.google-java-format'
2929

30-
ext['reactor-bom.version'] = 'Dysprosium-SR8'
30+
ext['reactor-bom.version'] = 'Dysprosium-BUILD-SNAPSHOT'
3131
ext['logback.version'] = '1.2.3'
3232
ext['findbugs.version'] = '3.0.2'
3333
ext['netty-bom.version'] = '4.1.50.Final'
@@ -87,12 +87,18 @@ subprojects {
8787
repositories {
8888
mavenCentral()
8989

90-
if (version.endsWith('SNAPSHOT') || project.hasProperty('platformVersion')) {
91-
maven { url 'http://repo.spring.io/libs-snapshot' }
92-
maven {
93-
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
90+
maven {
91+
url 'https://repo.spring.io/libs-snapshot'
92+
content {
93+
includeGroup "io.projectreactor"
94+
includeGroup "io.projectreactor.netty"
9495
}
9596
}
97+
98+
if (version.endsWith('SNAPSHOT') || project.hasProperty('versionSuffix')) {
99+
maven { url 'https://repo.spring.io/libs-snapshot' }
100+
maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
101+
}
96102
}
97103

98104
tasks.withType(GenerateModuleMetadata) {

0 commit comments

Comments
 (0)