Enable Gradle Eclipse project metadata generation

This commit applies the 'eclipse' Gradle plugin, such that .classpath,
.project and .settings files can be generated using:

    ./gradlew eclipse

Once the above is complete, import the project into Eclipse with the
following command:

    File->Import->Existing projects into workspace

The .gitignore file has been updated accordingly.

Resolves #222
This commit is contained in:
Chris Beams 2014-10-13 12:02:43 +02:00
parent 5f53fea190
commit f135873f58
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73
2 changed files with 4 additions and 0 deletions

3
.gitignore vendored
View file

@ -15,3 +15,6 @@ bitsquare.iml
.DS_Store
.gradle
build
.classpath
.project
.settings

View file

@ -1,4 +1,5 @@
apply plugin: 'java'
apply plugin: 'eclipse'
version = '0.1.0-SNAPSHOT'
sourceCompatibility = 1.8