Skip to content

Commit 5104524

Browse files
author
Jerome Revillard
committed
Bump to Gradle 5.6.4 to fix Eclipse IDE integration
1 parent c4aa228 commit 5104524

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'application'
55
id 'idea'
66
id 'jacoco'
7-
id 'org.inferred.processors' version '1.2.10'
7+
id 'org.inferred.processors' version '2.1.0'
88
id "net.ltgt.apt" version "0.21"
99
id 'com.github.johnrengelman.shadow' version '4.0.4'
1010
}
@@ -38,7 +38,7 @@ dependencies {
3838
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
3939
compile group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
4040

41-
processor 'org.inferred:freebuilder:2.5.0'
41+
processor 'org.inferred:freebuilder:2.7.0'
4242

4343
testCompile group: 'junit', name: 'junit', version: '4.12'
4444
testCompile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.5.14'
@@ -52,7 +52,7 @@ jacocoTestReport {
5252
reports {
5353
xml.enabled = true
5454
html.enabled = true
55-
xml.destination "${buildDir}/reports/jacoco/report.xml"
55+
xml.destination file("${buildDir}/reports/jacoco/report.xml")
5656
}
5757

5858
afterEvaluate {

gradle/wrapper/gradle-wrapper.jar

-431 Bytes
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ APP_NAME="Gradle"
2828
APP_BASE_NAME=`basename "$0"`
2929

3030
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31-
DEFAULT_JVM_OPTS=""
31+
DEFAULT_JVM_OPTS='"-Xmx64m"'
3232

3333
# Use the maximum available, or set MAX_FD != -1 to use that value.
3434
MAX_FD="maximum"
@@ -66,7 +66,7 @@ esac
6666

6767
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
6868

69-
# Determine the Java cli to use to start the JVM.
69+
# Determine the Java command to use to start the JVM.
7070
if [ -n "$JAVA_HOME" ] ; then
7171
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
7272
# IBM's JDK on AIX uses strange locations for the executables
@@ -82,7 +82,7 @@ location of your Java installation."
8282
fi
8383
else
8484
JAVACMD="java"
85-
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' cli could be found in your PATH.
85+
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
8686
8787
Please set the JAVA_HOME variable in your environment to match the
8888
location of your Java installation."
@@ -161,7 +161,7 @@ save () {
161161
}
162162
APP_ARGS=$(save "$@")
163163

164-
# Collect all arguments for the java cli, following the shell quoting and substitution rules
164+
# Collect all arguments for the java command, following the shell quoting and substitution rules
165165
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166166

167167
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong

gradlew.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0
1414
set APP_HOME=%DIRNAME%
1515

1616
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17-
set DEFAULT_JVM_OPTS=
17+
set DEFAULT_JVM_OPTS="-Xmx64m"
1818

1919
@rem Find java.exe
2020
if defined JAVA_HOME goto findJavaFromJavaHome

0 commit comments

Comments
 (0)