Spring Framework build uses Reactor 1.1 GA now, getting rid of last remaining pre-GA dependency
This commit is contained in:
parent
790d62bcb1
commit
27b2ed1614
|
@ -77,7 +77,6 @@ configure(allprojects) { project ->
|
|||
|
||||
repositories {
|
||||
maven { url "http://repo.spring.io/libs-release" }
|
||||
maven { url "http://repo.spring.io/milestone" } // for Reactor 1.1 RC1
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -396,8 +395,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.projectreactor:reactor-tcp:1.0.1.RELEASE")
|
||||
optional("org.eclipse.jetty.websocket:websocket-server:${jettyVersion}") {
|
||||
exclude group: "javax.servlet", module: "javax.servlet-api"
|
||||
|
@ -625,8 +624,8 @@ project("spring-websocket") {
|
|||
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