Skip to content

Commit 0544647

Browse files
committed
Latest dependency updates (Tomcat 8.0.15, JRuby 1.7.16.1)
1 parent 5ac8680 commit 0544647

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ configure(allprojects) { project ->
3636
ext.slf4jVersion = "1.7.7"
3737
ext.tiles2Version = "2.2.2"
3838
ext.tiles3Version = "3.0.5"
39-
ext.tomcatVersion = "8.0.9"
39+
ext.tomcatVersion = "8.0.15"
4040
ext.xstreamVersion = "1.4.7"
4141

4242
ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
@@ -383,7 +383,7 @@ project("spring-context") {
383383
optional("org.aspectj:aspectjweaver:${aspectjVersion}")
384384
optional("org.codehaus.groovy:groovy-all:${groovyVersion}")
385385
optional("org.beanshell:bsh:2.0b4")
386-
optional("org.jruby:jruby:1.7.16")
386+
optional("org.jruby:jruby:1.7.16.1")
387387
testCompile("javax.inject:javax.inject-tck:1")
388388
testCompile("commons-dbcp:commons-dbcp:1.4")
389389
testCompile("org.slf4j:slf4j-api:${slf4jVersion}")
@@ -880,6 +880,7 @@ project("spring-test") {
880880
}
881881

882882
task testNG(type: Test) {
883+
description = 'Runs TestNG tests.'
883884
useTestNG()
884885
scanForTestClasses = false
885886
include(["**/testng/**/*Tests.class", "**/testng/**/*Test.class"])
@@ -889,12 +890,14 @@ project("spring-test") {
889890
}
890891

891892
test {
893+
description = 'Runs JUnit tests.'
892894
dependsOn testNG
893895
useJUnit()
894896
exclude "**/testng/**/*.*"
895897
}
896898

897899
task aggregateTestReports(type: TestReport) {
900+
description = 'Aggregates JUnit and TestNG test reports.'
898901
destinationDir = test.reports.html.destination
899902
reportOn test, testNG
900903
}

0 commit comments

Comments
 (0)