From 454f34916370fdf51f92311b8132d97ef8a01f4f Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Tue, 28 Dec 2010 05:29:18 -0800 Subject: [PATCH] Remove workaround for GRADLE-1079 Previously, `gradle eclipse` would generate .classpath files with GRADLE_CACHE references. Now it generates fully-qualified paths to the user's home directory by default. This means we can remove the eclipseClasspath.variables = [:] workaround. --- build.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/build.gradle b/build.gradle index ff6d32896a..9403904872 100644 --- a/build.gradle +++ b/build.gradle @@ -147,9 +147,6 @@ configure(javaprojects) { xLintArg = '-Xlint:all' [compileJava, compileTestJava]*.options*.compilerArgs = [xLintArg] - // generate .classpath files without GRADLE_CACHE variable (GRADLE-1079) - eclipseClasspath.variables = [:] - // Tie pom generation into the standard build lifecycle (INT-1609) assemble.dependsOn generatePom