@@ -61,7 +61,7 @@ configure(allprojects) { project ->
61
61
ext. jaxbVersion = " 2.2.11"
62
62
ext. jaxwsVersion = " 2.2.11"
63
63
ext. jcaVersion = " 1.7"
64
- ext. jettyVersion = " 9.4.0.v20161208 "
64
+ ext. jettyVersion = " 9.4.1.v20170120 "
65
65
ext. jmsVersion = " 2.0.1"
66
66
ext. jodaVersion = " 2.9.7"
67
67
ext. jpaVersion = " 2.1.1"
@@ -71,7 +71,7 @@ configure(allprojects) { project ->
71
71
ext. junitVersion = " 4.12"
72
72
ext. junitJupiterVersion = ' 5.0.0-M3'
73
73
ext. junitPlatformVersion = ' 1.0.0-M3'
74
- ext. kotlinVersion = " 1.1.0-beta-17" // Also change kotlin-gradle-plugin version when upgrading
74
+ ext. kotlinVersion = " 1.1.0-beta-17" // also change kotlin-gradle-plugin version when upgrading
75
75
ext. log4jVersion = ' 2.7'
76
76
ext. nettyVersion = " 4.1.7.Final"
77
77
ext. okhttpVersion = " 2.7.5"
@@ -118,10 +118,10 @@ configure(allprojects) { project ->
118
118
}
119
119
120
120
configurations. all {
121
- // check for updates every build
121
+ // Check for updates every build
122
122
resolutionStrategy. cacheChangingModulesFor 0 , ' seconds'
123
123
124
- // consistent netty version (e.g. clashes between netty-all vs netty-common)
124
+ // Consistent netty version (e.g. clashes between netty-all vs netty-common)
125
125
resolutionStrategy. eachDependency { DependencyResolveDetails details ->
126
126
if (details. requested. group == ' io.netty' ) {
127
127
details. useVersion nettyVersion
@@ -362,9 +362,9 @@ project("spring-core") {
362
362
configurations. cglib. each { originalJar ->
363
363
zipfileset(src : originalJar)
364
364
}
365
- // repackage net.sf.cglib => org.springframework.cglib
365
+ // Repackage net.sf.cglib => org.springframework.cglib
366
366
rule(pattern : " net.sf.cglib.**" , result : " org.springframework.cglib.@1" )
367
- // as mentioned above, transform cglib"s internal asm dependencies from
367
+ // As mentioned above, transform cglib"s internal asm dependencies from
368
368
// org.objectweb.asm => org.springframework.asm. Doing this counts on the
369
369
// the fact that Spring and cglib depend on the same version of asm!
370
370
rule(pattern : " org.objectweb.asm.**" , result : " org.springframework.asm.@1" )
@@ -385,7 +385,7 @@ project("spring-core") {
385
385
configurations. objenesis. each { originalJar ->
386
386
zipfileset(src : originalJar)
387
387
}
388
- // repackage org.objenesis => org.springframework.objenesis
388
+ // Repackage org.objenesis => org.springframework.objenesis
389
389
rule(pattern : " org.objenesis.**" , result : " org.springframework.objenesis.@1" )
390
390
}
391
391
}
@@ -420,7 +420,7 @@ project("spring-core") {
420
420
}
421
421
422
422
jar {
423
- // inline repackaged cglib classes directly into the spring-core jar
423
+ // Inline repackaged cglib classes directly into spring-core jar
424
424
dependsOn cglibRepackJar
425
425
from(zipTree(cglibRepackJar. archivePath)) {
426
426
include " org/springframework/cglib/**"
0 commit comments