Update dependencies in build config

This commit is contained in:
Mark Nellemann 2019-08-19 10:49:53 +02:00
parent 52f569cf68
commit 5f5aec1186
2 changed files with 10 additions and 3 deletions

View File

@ -19,13 +19,20 @@ repositories {
} }
dependencies { dependencies {
implementation("org.slf4j:slf4j-api:${slf4jVersion}")
implementation("org.slf4j:slf4j-simple:${slf4jVersion}") implementation("org.slf4j:slf4j-simple:${slf4jVersion}")
implementation('com.google.code.gson:gson:2.8.5') implementation('com.google.code.gson:gson:2.8.5')
implementation("com.squareup.okhttp3:okhttp:4.1.0") implementation("com.squareup.okhttp3:okhttp:4.1.0")
testCompile("org.codehaus.groovy:groovy-all:${groovyVersion}")
testCompile("org.spockframework:spock-core:${spockVersion}") { testCompile("org.spockframework:spock-core:${spockVersion}") {
exclude group: "org.codehaus.groovy" exclude group: "org.codehaus.groovy"
} }
testCompile group: 'com.athaydes', name: 'spock-reports', version: '1.3.1' testCompile( 'com.athaydes:spock-reports:1.6.2' ) {
transitive = false // this avoids affecting your version of Groovy/Spock
}
} }
bintray { bintray {

View File

@ -3,7 +3,7 @@ group = biz.nellemann.libs
version = 1.0.1 version = 1.0.1
licenses = ['APACHE-2.0'] // or something else licenses = ['APACHE-2.0'] // or something else
groovyVersion = 2.5.8 groovyVersion = 2.5.8
slf4jVersion = 1.7.25 slf4jVersion = 1.7.28
spockVersion = 1.2-groovy-2.5 spockVersion = 1.3-groovy-2.5
siteUrl = https://bitbucket.org/mnellemann/libcvrapi siteUrl = https://bitbucket.org/mnellemann/libcvrapi
gitUrl = https://bitbucket.org/mnellemann/libcvrapi.git gitUrl = https://bitbucket.org/mnellemann/libcvrapi.git