Spring Framework build uses Reactor 1.1 GA now, getting rid of last remaining pre-GA dependency
(cherry picked from commit 27b2ed1
)
This commit is contained in:
parent
90081f787f
commit
c124d3b6c6
|
@ -78,7 +78,6 @@ configure(allprojects) { project ->
|
|||
|
||||
repositories {
|
||||
maven { url "http://repo.spring.io/libs-release" }
|
||||
maven { url "http://repo.spring.io/milestone" } // for Reactor 1.1.0.RC1
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -393,8 +392,8 @@ project("spring-messaging") {
|
|||
compile(project(":spring-beans"))
|
||||
compile(project(":spring-core"))
|
||||
compile(project(":spring-context"))
|
||||
optional("org.projectreactor:reactor-core:1.1.0.RC1")
|
||||
optional("org.projectreactor:reactor-net:1.1.0.RC1")
|
||||
optional("org.projectreactor:reactor-core:1.1.0.RELEASE")
|
||||
optional("org.projectreactor:reactor-net:1.1.0.RELEASE")
|
||||
optional("org.eclipse.jetty.websocket:websocket-server:${jettyVersion}") {
|
||||
exclude group: "javax.servlet", module: "javax.servlet-api"
|
||||
}
|
||||
|
@ -620,8 +619,8 @@ project("spring-websocket") {
|
|||
testCompile("org.apache.tomcat.embed:tomcat-embed-core:8.0.3")
|
||||
testCompile("org.apache.tomcat.embed:tomcat-embed-websocket:8.0.3")
|
||||
testCompile("org.apache.tomcat.embed:tomcat-embed-logging-juli:8.0.3")
|
||||
testCompile("org.projectreactor:reactor-core:1.1.0.RC1")
|
||||
testCompile("org.projectreactor:reactor-net:1.1.0.RC1")
|
||||
testCompile("org.projectreactor:reactor-core:1.1.0.RELEASE")
|
||||
testCompile("org.projectreactor:reactor-net:1.1.0.RELEASE")
|
||||
testCompile("log4j:log4j:1.2.17")
|
||||
testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue