#IntelliJ Build Instructions
For Windows and for Mac:
- Open IntelliJ and make sure master is checked out and up to date (change the release version in pom.xml if needed).
- Navigate to "Edit Configurations" at the top right of the screen by clicking the small down triangle near the green play button.
- In the upper left corner of the "Edit Configurations" window, click the plus sign and select "Application".
- Name the build and select Elegit's main class.
- At the bottom of the screen, there should be another plus sign. Click it, and select "Run Maven Goal". In the "Command Line" text area, type "jfx:native" and click "OK".
- Click "Apply" then "Ok", and run the configuration you just created in the top right of the screen (click the green play button).
For Linux:
- Open IntelliJ and make sure master is checked out and up to date (change the release version in pom.xml if needed).
- Create a new Run Configuration by going to the Run menu and selecting "Edit Configurations..."
- Click the + sign on the upper-left for a new configuration, and select Maven.
- Give the config a name.
- In the "command-line" box, paste in the following:
clean compile jfx:build-jar assembly:single
- Then from the Run menu, run your new configuration.
- The builds for distribution can be found in the subdirectory "target."
###Done!