| [GRADLE-724] Eclipse plugin should add additional source sets to .classpath Created: 02/Nov/09 Updated: 04/Jan/13 Resolved: 24/Nov/10 | |
| Status: | Resolved | 
| Project: | Gradle | 
| Affects Version/s: | 0.8 | 
| Fix Version/s: | 0.9-rc-1 | 
| Type: | Improvement | ||
| Reporter: | Peter Voss | Assignee: | Hans Dockter | 
| Resolution: | Fixed | Votes: | 0 | 
| Description | 
| Additional source sets are not included as Eclipse source files. I have been using the "intTest" source set from the user's guide: sourceSets {
    intTest {
        compileClasspath = sourceSets.main.classes + configurations.intTestCompile
        runtimeClasspath = classes + sourceSets.main.classes + configurations.intTestRuntime
    }
}
To be able to run the integration tests from Eclipse you would also have to add all additional runtime libraries for intTest to the Eclipse classpath. |