Merge pull request #972 from DataDog/mar-kolya/update-gradle

Update gradle to 5.6.1
This commit is contained in:
Nikolay Martynov 2019-09-03 12:16:24 -04:00 committed by GitHub
commit 02adf464e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 15 deletions

View File

@ -1,11 +1,11 @@
def groovyVer = "2.5.7"
def groovyVer = "2.5.8"
def spockGroovyVer = groovyVer.replaceAll(/\.\d+$/, '')
ext {
versions = [
opentracing: '0.31.0',
slf4j : "1.7.25",
slf4j : "1.7.28",
guava : "20.0", // Last version to support Java 7
// When upgrading for security fixes, ensure corresponding change is reflected in jmxfetch.
@ -15,11 +15,11 @@ ext {
groovy : groovyVer,
junit : "4.12",
logback : "1.2.3",
lombok : "1.18.4",
lombok : "1.18.8",
bytebuddy : "1.10.0",
scala : "2.11.12", // Last version to support Java 7 (2.12+ require Java 8+)
kotlin : "1.3.11",
coroutines : "1.1.0"
kotlin : "1.3.50",
coroutines : "1.3.0"
]
deps = [

View File

@ -1,10 +1,6 @@
// Enable testing kotlin code in groovy spock tests.
apply plugin: 'kotlin'
kotlin {
copyClassesToJavaOutput = true
}
compileTestGroovy {
classpath = classpath.plus(files(compileTestKotlin.destinationDir))
dependsOn compileTestKotlin

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

4
gradlew vendored
View File

@ -125,8 +125,8 @@ if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`