-
Notifications
You must be signed in to change notification settings - Fork 107
Setting up build tools
Jonathan Leitschuh edited this page Jan 14, 2016
·
9 revisions
If you're interested in contributing to the development of GRIP, check out these instructions on getting the tools set up.
- The JDK 8 is needed to build this
- If you have problems with the setup make sure you have the newest version of the JDK http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
- IntelliJ IDEA is used to develop this, though it is not required
- Select either
Import Project
orNew > Project From Existing Sources...
and select the folder with the GRIP source. - Select Gradle as the external model to import the project.
- Make sure the Gradle JVM is set to 1.8 and click finish.
- When prompted to select the modules to include in the project, leave them all selected and click
OK
. - To setup running GRIP from IntelliJ, open
Run > Edit Configurations...
- Add a new Gradle configuration, and give it a name.
- Click on the ellipsis to the right of the
Gradle project:
text field and selectui
. - Type
:ui:run
into theTasks:
text box. - The run configuration should look like this.
You are done setting up the development environment and can start developing.