From 09cbbc7432abfb256e429943e905457afeac26a0 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Fri, 23 Jan 2015 19:10:51 +0100 Subject: [PATCH] apply dependency updates --- backend/build.gradle | 2 +- build.gradle | 22 +++++++++++----------- common/build.gradle | 2 +- frontend/build.gradle | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index 15ce901..f868601 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -31,7 +31,7 @@ dependencies { testCompile("org.easytesting:fest-assert:1.4") testCompile("org.mockito:mockito-all:1.9.5") - testCompile("org.testng:testng:6.8.8") + testCompile("org.testng:testng:6.8.17") compile project(':common') } diff --git a/build.gradle b/build.gradle index 8cd3e5e..ea0a6f1 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ subprojects { jcenter() } dependencies { - classpath 'com.github.ben-manes:gradle-versions-plugin:0.5' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.7' } } @@ -54,7 +54,7 @@ subprojects { } ext { - springVersion = '4.1.1.RELEASE' + springVersion = '4.1.4.RELEASE' springBootVersion = '1.1.7.RELEASE' springSecurityVersion = '3.2.5.RELEASE' jacksonVersion = '2.4.1' @@ -86,20 +86,20 @@ subprojects { def dependencyVersionsByGroup = [ 'org.apache.tomcat.embed' : '8.0.12', 'org.springframework' : springVersion, - 'org.codehaus.groovy' : '2.3.6', - 'org.slf4j' : '1.7.7', + 'org.codehaus.groovy': '2.3.9', + 'org.slf4j' : '1.7.10', 'com.fasterxml.jackson.core' : jacksonVersion, 'com.fasterxml.jackson.datatype': jacksonVersion ] dependencies { - compile('org.codehaus.groovy:groovy-all:2.3.6') { + compile('org.codehaus.groovy:groovy-all:2.3.9') { exclude group: 'org.junit', module: 'junit' } compile('commons-lang:commons-lang:2.6') - compile 'org.slf4j:slf4j-api:1.7.7' - runtime 'org.slf4j:log4j-over-slf4j:1.7.7' + compile 'org.slf4j:slf4j-api:1.7.10' + runtime 'org.slf4j:log4j-over-slf4j:1.7.10' runtime 'ch.qos.logback:logback-classic:1.1.2' compile("org.easytesting:fest-assert:1.4") @@ -108,10 +108,10 @@ subprojects { testCompile 'org.spockframework:spock-core:0.7-groovy-2.0' testCompile lib."spock-spring" testCompile 'cglib:cglib-nodep:3.1' - testCompile 'com.jayway.jsonpath:json-path:0.9.1' - testCompile 'com.jayway.jsonpath:json-path-assert:0.9.1' - testCompile 'junit:junit:4.11' - testCompile 'org.testng:testng:6.8.8' + testCompile 'com.jayway.jsonpath:json-path:1.2.0' + testCompile 'com.jayway.jsonpath:json-path-assert:1.2.0' + testCompile 'junit:junit:4.12' + testCompile 'org.testng:testng:6.8.17' testCompile 'javax.servlet:javax.servlet-api:3.1.0' } diff --git a/common/build.gradle b/common/build.gradle index 19bf8d3..68b1b4b 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -19,7 +19,7 @@ dependencies { compile("org.easytesting:fest-assert:1.4") testCompile("org.mockito:mockito-all:1.9.5") - testCompile("org.testng:testng:6.8.8") + testCompile("org.testng:testng:6.8.17") compile("org.apache.httpcomponents:httpclient:4.3.4") diff --git a/frontend/build.gradle b/frontend/build.gradle index 98a2f7e..dc39d3b 100644 --- a/frontend/build.gradle +++ b/frontend/build.gradle @@ -2,8 +2,8 @@ import org.apache.tools.ant.filters.ReplaceTokens buildscript { dependencies { - classpath 'com.moowork.gradle:gradle-grunt-plugin:0.5' - classpath 'com.moowork.gradle:gradle-node-plugin:0.5' + classpath 'com.moowork.gradle:gradle-grunt-plugin:0.6' + classpath 'com.moowork.gradle:gradle-node-plugin:0.8' classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion") } }