Skip to content

Commit fef8ab9

Browse files
committed
Eclipse doesnt like Gradle 2.8
This reverts commit 7cf4579.
1 parent 7e64153 commit fef8ab9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ artifacts {
151151
}
152152

153153
//These should add a compile time only dependancies to eclipse, ide, and javac, but NOT to the generated POM on maven.
154-
sourceSets.main.compileClasspath += configurations.compileOnly
155-
idea.module.scopes.PROVIDED.plus += configurations.compileOnly
156-
eclipse.classpath.plusConfigurations += configurations.compileOnly
154+
sourceSets.main.compileClasspath += [ configurations.compileOnly ]
155+
idea.module.scopes.PROVIDED.plus += [ configurations.compileOnly ]
156+
eclipse.classpath.plusConfigurations += [ configurations.compileOnly ]
157157

158158
test {
159159
if (project.hasProperty("filesmaven")) // disable this test when on the forge jenkins

gradle/wrapper/gradle-wrapper.jar

1 Byte
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Oct 25 13:52:54 CDT 2015
1+
#Tue Sep 15 21:19:52 CDT 2015
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip

gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ while [ -h "$PRG" ] ; do
5656
fi
5757
done
5858
SAVED="`pwd`"
59-
cd "`dirname \"$PRG\"`/" >/dev/null
59+
cd "`dirname \"$PRG\"`/" >&-
6060
APP_HOME="`pwd -P`"
61-
cd "$SAVED" >/dev/null
61+
cd "$SAVED" >&-
6262

6363
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
6464

0 commit comments

Comments
 (0)