Skip to content

Commit 27b2ed1

Browse files
committed
Spring Framework build uses Reactor 1.1 GA now, getting rid of last remaining pre-GA dependency
1 parent 790d62b commit 27b2ed1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ configure(allprojects) { project ->
7777

7878
repositories {
7979
maven { url "http://repo.spring.io/libs-release" }
80-
maven { url "http://repo.spring.io/milestone" } // for Reactor 1.1 RC1
8180
}
8281

8382
dependencies {
@@ -396,8 +395,8 @@ project("spring-messaging") {
396395
compile(project(":spring-beans"))
397396
compile(project(":spring-core"))
398397
compile(project(":spring-context"))
399-
optional("org.projectreactor:reactor-core:1.1.0.RC1")
400-
optional("org.projectreactor:reactor-net:1.1.0.RC1")
398+
optional("org.projectreactor:reactor-core:1.1.0.RELEASE")
399+
optional("org.projectreactor:reactor-net:1.1.0.RELEASE")
401400
optional("org.projectreactor:reactor-tcp:1.0.1.RELEASE")
402401
optional("org.eclipse.jetty.websocket:websocket-server:${jettyVersion}") {
403402
exclude group: "javax.servlet", module: "javax.servlet-api"
@@ -625,8 +624,8 @@ project("spring-websocket") {
625624
testCompile("org.apache.tomcat.embed:tomcat-embed-websocket:8.0.3")
626625
testCompile("org.apache.tomcat.embed:tomcat-embed-logging-juli:8.0.3")
627626

628-
testCompile("org.projectreactor:reactor-core:1.1.0.RC1")
629-
testCompile("org.projectreactor:reactor-net:1.1.0.RC1")
627+
testCompile("org.projectreactor:reactor-core:1.1.0.RELEASE")
628+
testCompile("org.projectreactor:reactor-net:1.1.0.RELEASE")
630629
testCompile("log4j:log4j:1.2.17")
631630
testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
632631
}

0 commit comments

Comments
 (0)