Update dependencies

This commit is contained in:
Sebastien Deleuze
2016-08-02 07:03:15 -07:00
parent 4935181e36
commit a7f2bd2815

View File

@@ -1,12 +1,11 @@
buildscript {
ext {
springBootVersion = '1.4.0.M3'
kotlinVersion = '1.0.2'
springBootVersion = '1.4.0.RELEASE'
kotlinVersion = '1.0.3'
exposedVersion = '0.5.0'
}
repositories {
mavenCentral()
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
@@ -23,7 +22,6 @@ apply plugin: 'spring-boot'
repositories {
mavenCentral()
maven { url 'http://repo.spring.io/milestone' }
maven { url 'https://dl.bintray.com/kotlin/exposed' } // exposed
maven { url 'https://dl.bintray.com/sdeleuze/maven/' } // postgis-geojson
}
@@ -38,7 +36,7 @@ jar {
}
ext['snippetsDir'] = file('build/generated-snippets')
ext['jackson.version'] = '2.7.3'
ext['jackson.version'] = '2.7.5'
configurations {
all*.exclude group: 'postgresql', module: 'postgresql'
@@ -63,11 +61,11 @@ dependencies {
compile('com.github.mayconbordin:postgis-geojson:1.1') // https://github.com/sdeleuze/postgis-geojson
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('org.springframework.restdocs:spring-restdocs-mockmvc:1.1.0.RC1')
testCompile('org.springframework.restdocs:spring-restdocs-mockmvc:1.1.1.RELEASE')
}
task wrapper(type: Wrapper) {
gradleVersion = '2.13'
gradleVersion = '2.14.1'
}