From f135873f581c4eaf4c821755496d4c957d216b09 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Mon, 13 Oct 2014 12:02:43 +0200 Subject: [PATCH] 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 --- .gitignore | 3 +++ build.gradle | 1 + 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 88b552d11f..d08ba465ed 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ bitsquare.iml .DS_Store .gradle build +.classpath +.project +.settings diff --git a/build.gradle b/build.gradle index 2e264f571a..c936a989be 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'java' +apply plugin: 'eclipse' version = '0.1.0-SNAPSHOT' sourceCompatibility = 1.8