integration build with Reactor Core 2.5.0.M2
This commit is contained in:
parent
ca7aeaae35
commit
1eadee5655
|
@ -22,6 +22,7 @@ repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven { url 'https://oss.jfrog.org/libs-snapshot' } // RxNetty 0.5.x snapshots
|
maven { url 'https://oss.jfrog.org/libs-snapshot' } // RxNetty 0.5.x snapshots
|
||||||
|
maven { url 'http://repo.spring.io/milestone' } // Reactor milestone
|
||||||
maven { url 'http://repo.spring.io/snapshot' } // Reactor snapshot
|
maven { url 'http://repo.spring.io/snapshot' } // Reactor snapshot
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,13 +33,14 @@ configurations.all {
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
springVersion = '4.2.3.RELEASE'
|
springVersion = '4.2.3.RELEASE'
|
||||||
reactorVersion = '2.5.0.BUILD-SNAPSHOT'
|
reactorVersion = '2.5.0.M2'
|
||||||
|
reactorNettyVersion = '2.5.0.BUILD-SNAPSHOT'
|
||||||
tomcatVersion = '8.0.28'
|
tomcatVersion = '8.0.28'
|
||||||
jettyVersion = '9.3.5.v20151012'
|
jettyVersion = '9.3.5.v20151012'
|
||||||
|
|
||||||
javadocLinks = [
|
javadocLinks = [
|
||||||
"http://docs.oracle.com/javase/8/docs/api/",
|
"http://docs.oracle.com/javase/8/docs/api/",
|
||||||
"http://next.projectreactor.io/core/docs/api/",
|
"http://projectreactor.io/core/docs/api/",
|
||||||
"http://docs.spring.io/spring/docs/${springVersion}/javadoc-api/",
|
"http://docs.spring.io/spring/docs/${springVersion}/javadoc-api/",
|
||||||
"http://www.reactive-streams.org/reactive-streams-1.0.0-javadoc/"
|
"http://www.reactive-streams.org/reactive-streams-1.0.0-javadoc/"
|
||||||
] as String[]
|
] as String[]
|
||||||
|
@ -88,8 +90,7 @@ dependencies {
|
||||||
optional 'io.reactivex:rxjava:1.1.0'
|
optional 'io.reactivex:rxjava:1.1.0'
|
||||||
optional "io.reactivex:rxnetty-http:0.5.0-SNAPSHOT"
|
optional "io.reactivex:rxnetty-http:0.5.0-SNAPSHOT"
|
||||||
optional "com.fasterxml.jackson.core:jackson-databind:2.6.2"
|
optional "com.fasterxml.jackson.core:jackson-databind:2.6.2"
|
||||||
optional "io.projectreactor:reactor-net:${reactorVersion}"
|
optional "io.projectreactor:reactor-net:${reactorNettyVersion}"
|
||||||
optional "io.projectreactor:reactor-io:${reactorVersion}"
|
|
||||||
optional "org.apache.tomcat:tomcat-util:${tomcatVersion}"
|
optional "org.apache.tomcat:tomcat-util:${tomcatVersion}"
|
||||||
optional "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}"
|
optional "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}"
|
||||||
optional 'io.undertow:undertow-core:1.3.5.Final'
|
optional 'io.undertow:undertow-core:1.3.5.Final'
|
||||||
|
|
Loading…
Reference in New Issue