Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #46 from paulerickson/master
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
paulerickson authored Jul 12, 2016
2 parents 69ba289 + 94036bf commit a14c860
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
subprojects {

group = 'edu.wisc.my.restproxy'
version = '2.1.3-SNAPSHOT'
version = '2.1.3'

repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
Expand Down
6 changes: 2 additions & 4 deletions rest-proxy-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.5.RELEASE")
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.6.RELEASE")
}
}
apply plugin: 'spring-boot'
mainClassName = "edu.wisc.my.restproxy.Server"

dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.4'
compile 'org.springframework.boot:spring-boot-starter-web:1.2.5.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-web:1.3.6.RELEASE'
compile project(':rest-proxy-core')
}

32 changes: 16 additions & 16 deletions rest-proxy-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.4'
compile 'org.apache.commons:commons-lang3:3.3.2'
compile 'commons-codec:commons-codec:1.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.2.0'
compile 'com.google.guava:guava:18.0'
compile 'org.springframework:spring-core:4.1.5.RELEASE'
compile 'org.springframework:spring-web:4.1.5.RELEASE'
compile 'org.springframework:spring-webmvc:4.1.5.RELEASE'
compile 'org.slf4j:jcl-over-slf4j:1.7.5'
compile 'org.slf4j:slf4j-api:1.7.5'
runtime 'ch.qos.logback:logback-classic:1.0.12'
runtime 'org.slf4j:jul-to-slf4j:1.7.5'
runtime 'org.slf4j:log4j-over-slf4j:1.7.5'
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:1.9.5'
testCompile 'org.springframework:spring-test:4.1.5.RELEASE'
compile 'org.codehaus.groovy:groovy-all:2.4.7'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'commons-codec:commons-codec:1.10'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.0'
compile 'com.google.guava:guava:19.0'
compile 'org.springframework:spring-core:4.3.1.RELEASE'
compile 'org.springframework:spring-web:4.3.1.RELEASE'
compile 'org.springframework:spring-webmvc:4.3.1.RELEASE'
compile 'org.slf4j:jcl-over-slf4j:1.7.21'
compile 'org.slf4j:slf4j-api:1.7.21'
runtime 'ch.qos.logback:logback-classic:1.1.7'
runtime 'org.slf4j:jul-to-slf4j:1.7.21'
runtime 'org.slf4j:log4j-over-slf4j:1.7.21'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.springframework:spring-test:4.3.1.RELEASE'
provided 'javax.servlet:javax.servlet-api:3.1.0'
}

0 comments on commit a14c860

Please sign in to comment.