Skip to content

Commit 995e3e0

Browse files
committed
Update library dependencies
(29)
1 parent 3ad79da commit 995e3e0

File tree

3 files changed

+25
-17
lines changed

3 files changed

+25
-17
lines changed

build.gradle

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id "net.ltgt.apt" version "0.13"
3-
id 'com.github.ben-manes.versions' version '0.17.0'
2+
id "net.ltgt.apt-idea" version "0.18"
3+
id 'com.github.ben-manes.versions' version '0.20.0'
44
}
55

66
allprojects {
@@ -10,32 +10,34 @@ allprojects {
1010

1111
repositories {
1212
jcenter()
13-
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local/' }
13+
// maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local/' }
1414
mavenCentral()
1515
}
1616

1717
ext {
18-
byteBuddyVersion = "1.7.9"
18+
byteBuddyVersion = "1.8.17"
1919
cglib = "3.2.4"
20-
classmate = "1.3.4"
21-
groovy = "2.4.8"
20+
classmate = "1.4.0"
21+
groovy = "2.5.0"
2222
guava = "20.0"
2323
grails = "3.2.4"
24+
htmlUnit = "2.29"
2425
jackson = '2.7.7'
2526
joda = "2.9.4"
2627
jsonPath = "2.4.0"
2728
jsonAssert = "1.5.0"
2829
mockito = "1.10.19"
2930
objenesis = "2.4"
30-
servlet = "3.1.0"
31+
restAssured = '3.0.6'
32+
servlet = "4.0.1"
3133
slf4j = "1.7.22"
3234
snakeyaml = '1.19'
3335
spock = "1.1-groovy-2.4"
34-
spring = "4.2.8.RELEASE"
36+
spring = "4.2.13.RELEASE"
3537
springHateoas = "0.21.0.RELEASE"
3638
springPluginVersion = "1.2.0.RELEASE"
37-
swagger2Core = "1.5.12"
38-
springBoot = "1.5.9.RELEASE"
39-
springfox = "2.7.0"
39+
swagger2Core = "1.5.20"
40+
springBoot = "1.5.15.RELEASE"
41+
springfox = "2.9.2"
4042
}
4143
}

springfox-grails-contract-tests/build.gradle

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,15 @@ dependencies {
6868
testCompile "org.grails:grails-plugin-testing"
6969
testCompile "org.grails.plugins:geb"
7070
testCompile "org.grails:grails-datastore-rest-client"
71-
testCompile 'io.rest-assured:rest-assured:3.0.6'
72-
testCompile 'io.rest-assured:json-path:3.0.6'
71+
72+
testCompile "io.rest-assured:rest-assured:$restAssured"
73+
testCompile "io.rest-assured:json-path:$restAssured"
74+
7375
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.52.0"
74-
testRuntime "net.sourceforge.htmlunit:htmlunit:2.29"
76+
77+
testRuntime "net.sourceforge.htmlunit:htmlunit:$htmlUnit"
7578
testCompile "org.skyscreamer:jsonassert:${jsonAssert}"
7679
}
80+
springBoot {
81+
mainClass = 'grails.springfox.sample.Application'
82+
}

springfox-grails/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ buildscript {
2525
}
2626

2727
plugins {
28-
id "com.jfrog.bintray" version "1.8.0"
29-
id "com.jfrog.artifactory" version "4.6.0"
28+
id "com.jfrog.bintray" version "1.8.4"
29+
id "com.jfrog.artifactory" version "4.7.5"
3030
}
3131

3232
apply plugin: 'groovy'
@@ -61,7 +61,7 @@ dependencies {
6161
provided "org.grails:grails-core:$grails"
6262
provided "org.grails:grails-web-url-mappings:$grails"
6363
provided "org.grails:grails-web-url-mappings:$grails"
64-
provided 'javax.servlet:javax.servlet-api:4.0.0'
64+
provided "javax.servlet:javax.servlet-api:$servlet"
6565

6666
compile "com.google.guava:guava:${guava}"
6767
compile "com.fasterxml:classmate:${classmate}"

0 commit comments

Comments
 (0)