Skip to content
Chris Hutchinson edited this page Jun 18, 2015 · 5 revisions

NOTE: This documentation is outdated and no longer relevant. It will be replaced in the near future.

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 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

Build Example

The following set of commands represents a full example of obtaining the latest source code, compiling the project, and running the RPG Toolkit Editor application:

git clone https://github.com/rpgtoolkit/editor.git
git checkout gradle
gradlew build
gradlew run

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