File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff 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 ) {
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments