You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.5 KiB
1.5 KiB
The following has been tested against Intellij IDEA 13.1
Steps
Within your locally cloned spring-framework working directory:
- Pre-compile
spring-oxm
with./gradlew cleanIdea :spring-oxm:compileTestJava
- Import into IDEA (File->import project->import from external model->Gradle)
- Set the Project JDK as appropriate (1.8+)
- Exclude the
spring-aspects
module (Go to File->Project Structure->Modules) - Code away
Known issues
spring-oxm
should be pre-compiled since it's using repackaged dependencies (see *RepackJar tasks)spring-aspects
does not compile out of the box due to references to aspect types unknown to IDEA. See https://youtrack.jetbrains.com/issue/IDEA-64446 for details. In the meantime, the 'spring-aspects' should be excluded from the overall project to avoid compilation errors.- While all JUnit tests pass from the command line with Gradle, many will fail when run from IDEA. Resolving this is a work in progress. If attempting to run all JUnit tests from within IDEA, you will likely need to set the following VM options to avoid out of memory errors: -XX:MaxPermSize=2048m -Xmx2048m -XX:MaxHeapSize=2048m
Tips
In any case, please do not check in your own generated .iml, .ipr, or .iws files. You'll notice these files are already intentionally in .gitignore. The same policy goes for eclipse metadata.
FAQ
Q. What about IDEA's own Gradle support?
A. Keep an eye on https://youtrack.jetbrains.com/issue/IDEA-53476