Skip to content

Commit 0ec1ca7

Browse files
OlegDokukarobertroeser
authored andcommitted
update version and provide dependency on to Reactor Snapshot (#535)
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent 56c07aa commit 0ec1ca7

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

build.gradle

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
id 'com.jfrog.artifactory' version '4.7.0'
2222
id 'com.jfrog.bintray' version '1.8.0'
2323
id 'me.champeau.gradle.jmh' version '0.4.5' apply false
24-
id 'io.spring.dependency-management' version '1.0.4.RELEASE' apply false
24+
id 'io.spring.dependency-management' version '1.0.6.RELEASE' apply false
2525
id 'io.morethan.jmhreport' version '0.7.0' apply false
2626
}
2727

@@ -30,7 +30,12 @@ subprojects {
3030

3131
dependencyManagement {
3232
imports {
33-
mavenBom 'io.projectreactor:reactor-bom:Californium-RELEASE'
33+
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
34+
mavenBom 'io.projectreactor:reactor-bom:Californium-BUILD-SNAPSHOT'
35+
}
36+
else {
37+
mavenBom 'io.projectreactor:reactor-bom:Californium-RELEASE'
38+
}
3439
}
3540

3641
dependencies {
@@ -68,6 +73,10 @@ subprojects {
6873

6974
repositories {
7075
mavenCentral()
76+
77+
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
78+
maven { url 'http://repo.spring.io/libs-snapshot' }
79+
}
7180
}
7281

7382
plugins.withType(JavaPlugin) {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313
#
14-
version=0.11.0.BUILD-SNAPSHOT
14+
version=0.11.9.BUILD-SNAPSHOT

0 commit comments

Comments
 (0)