Skip to content

Commit

Permalink
apply dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Jan 23, 2015
1 parent f6924d1 commit 09cbbc7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}
Expand Down
22 changes: 11 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

Expand All @@ -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'
Expand Down Expand Up @@ -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")
Expand All @@ -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'
}

Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
4 changes: 2 additions & 2 deletions frontend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
Expand Down

0 comments on commit 09cbbc7

Please sign in to comment.