Skip to content
Chris Hutchinson edited this page Apr 7, 2015 · 5 revisions

Introduction

This document assumes you have rudimentary knowledge of the Gradle build system. It is recommended you have a basic understanding of Gradle, dependency management, and basic knowledge of building Java applications. You can learn more about Gradle here: http://gradle.org/docs/current/userguide/userguide_single.html.

Build with Gradle

This option is only presently available via the gradle branch, until it is merged with master.

 gradlew build

Generate Eclipse project

To generate an Eclipse project run the following command:

gradlew eclipse

Generate IntelliJ IDEA project

To generate an IntellIJ IDEA project run the following command:

gradlew idea

Run with Gradle

Assuming the build is successful, you can run the editor application with the command:

gradlew run
  • [User Guide](User Guide)
Clone this wiki locally