|
|
|
|
@ -26,17 +26,13 @@ repositories {
@@ -26,17 +26,13 @@ repositories {
|
|
|
|
|
maven { url 'http://repo.spring.io/snapshot' } // Reactor snapshot |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
configurations.all { |
|
|
|
|
// check for updates every build |
|
|
|
|
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ext { |
|
|
|
|
springVersion = '4.2.3.RELEASE' |
|
|
|
|
reactorVersion = '2.5.0.M2' |
|
|
|
|
reactorNettyVersion = '2.5.0.BUILD-SNAPSHOT' |
|
|
|
|
tomcatVersion = '8.0.28' |
|
|
|
|
jettyVersion = '9.3.5.v20151012' |
|
|
|
|
nettyVersion = '4.1.0.CR3' |
|
|
|
|
|
|
|
|
|
javadocLinks = [ |
|
|
|
|
"http://docs.oracle.com/javase/8/docs/api/", |
|
|
|
|
@ -46,6 +42,18 @@ ext {
@@ -46,6 +42,18 @@ ext {
|
|
|
|
|
] as String[] |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
configurations.all { |
|
|
|
|
// check for updates every build |
|
|
|
|
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' |
|
|
|
|
resolutionStrategy.eachDependency { DependencyResolveDetails details -> |
|
|
|
|
// consistent netty version to avoid issues with clashes in netty-all vs |
|
|
|
|
// netty-common for example |
|
|
|
|
if (details.requested.group == 'io.netty') { |
|
|
|
|
details.useVersion nettyVersion |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
uploadArchives { |
|
|
|
|
repositories { |
|
|
|
|
mavenDeployer { |
|
|
|
|
|