From 83aad3101086836dbd6f8d4ce9d4fd71ab9121a1 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Thu, 21 Jun 2012 10:53:00 -0400 Subject: [PATCH] Add eclipse plugin and update .gitignore --- .gitignore | 5 ++++- build.gradle | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 23650c61f..4f2acb339 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,7 @@ .DS_Store .gradle/ build/ -*.i* \ No newline at end of file +*.i* +.classpath +.project +.settings diff --git a/build.gradle b/build.gradle index 4bd302137..b8040c3ea 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,7 @@ apply plugin: "base" allprojects { apply plugin: "idea" + apply plugin: "eclipse" apply plugin: "maven" group = "org.springframework.data" @@ -100,4 +101,4 @@ idea { } } } -} \ No newline at end of file +}