1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
### IDE Plugins
*Eclipse*
- [Buildship plugin](https://github.com/eclipse/buildship/blob/master/docs/user/Installation.md)
- [Gradle integration plugin](https://marketplace.eclipse.org/content/buildship-gradle-integration)
*Netbeans*
- [Gradle plugin](http://plugins.netbeans.org/plugin/44510/gradle-support)
*IntelliJ*
- Plugins:
- Eclipse Code Formatter : configure in settings to pick up the eclipse xml formatter file.
- checkstyle-IDEA : in settings select the triplea checkstyle file
- Save Actions: configure in settings to at least add 'final' to local variables and class variables.
### Gradle - Building and Running the Code
Useful build commands:
```
./gradlew test
./gradlew run
```
## Set up IDE Formatter
See [code format](https://github.com/triplea-game/triplea/blob/master/docs/dev/code_format.md)
## Useful Tools
- SCM breeze, useful Git CLI helper: https://github.com/ndbroadbent/scm_breeze
- EGit in Eclipse: http://www.eclipse.org/egit/
- more assistance can be found on http://www.vogella.com/tutorials/EclipseGit/article.html
|