[GRADLE-1292] setting eclipseClasspath defaultOutputDir doesn't get applied properly in the eclipse .classpath file Created: 06/Jan/11 Updated: 04/Jan/13 Resolved: 09/May/11 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 0.9 |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | Ken Avery | Assignee: | Szczepan Faber |
Resolution: | Not A Bug | Votes: | 0 |
Description |
When attempting to set the defaultOutputDir for the eclipse plugin, the "Default Output Folder" gets updated properly but the project sourceSets do not. I am using the following code in my build.gradle script: eclipseClasspath { defaultOutputDir = new File(project.getProjectDir().getAbsolutePath() + "/eclipseBin"); }I see the following result in the generated eclipse .classpath file: <classpathentry kind="output" path="eclipseBin"/> I would have expected the "eclipseBin" path seen in the first line to be applied to the output for the next two lines ("src/main/java" and "src/test/java") |
Comments |
Comment by Szczepan Faber [ 09/May/11 ] |
At this moment, eclipseClasspath task does not generate the 'output' attribute for entries of type 'src'. So I think I'm going to close this issue. |