Skip to content

Commit

Permalink
Fix IDE integration instructions in README. (closes groovy#26)
Browse files Browse the repository at this point in the history
The README stated that you should run

    gradlew jarAll idea

before loading the project into IntelliJ IDEA. It seems, though, that the `jarAll`
task breaks the IDE integration and you can't run tests. Running

    gradlew jar idea

seems to work fine, so I've updated the README to reflect this.
  • Loading branch information
pledbrook authored and PascalSchumacher committed May 31, 2015
1 parent 6a44850 commit 7fbff13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Expand Up @@ -83,13 +83,13 @@ If you want to launch one unit test, use this. <TestClassName> is like `groovy.G

To build from IntelliJ IDEA:

gradlew jarAll idea
gradlew jar idea

Then open the generated project in IDEA.

To build from Eclipse:

gradlew jarAll eclipse
gradlew jar eclipse

Then open the generated project and the generated subprojects in Eclipse. But be aware that Eclipse tends to be more limited in its ability to reproduce a Gradle build structure. The generated project files may contain a circular dependency which may or may not prevent Eclipse from using them. It depends on the Eclipse version, if this is an issue or not.

Expand Down

0 comments on commit 7fbff13

Please sign in to comment.