Adding .gitignore for eclipse files.
diff --git a/.gitignore b/.gitignore
index 7ae3d1d..dea4a95 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,5 +9,11 @@
 .idea
 *.iml
 
+# Eclipse
+.classpath
+.project
+.settings
+.gitignore
+
 # OS X
 .DS_Store
diff --git a/build.gradle b/build.gradle
index 12835d5..bc0b7d1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,7 @@
 subprojects {
     apply plugin: "java"
     apply plugin: "maven"
+    apply plugin: "idea"
 
     group = "com.google.net.stubby"
     version = "0.1.0-SNAPSHOT"
diff --git a/integration-testing/build.gradle b/integration-testing/build.gradle
index cb55bb6..689d5f5 100644
--- a/integration-testing/build.gradle
+++ b/integration-testing/build.gradle
@@ -1,5 +1,4 @@
 apply plugin: 'protobuf'
-apply plugin: 'idea'
 
 description = "Stubby: Integration Testing"