From 7ff6816541b2aad3e7b31088e553d5aa26213046 Mon Sep 17 00:00:00 2001 From: Mattias Hellborg Arthursson Date: Mon, 29 Jul 2013 15:19:58 +0200 Subject: [PATCH] Made sure 'provided' dependencies are handled in idea and eclipse. --- .gitignore | 6 +++++- build.gradle | 9 +++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 19168c87..a41b34ac 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,8 @@ target bin build .git -.gradle \ No newline at end of file +.gradle +*.iml +*.ipr +.idea +*.iws diff --git a/build.gradle b/build.gradle index d51a5e67..3b262eb4 100644 --- a/build.gradle +++ b/build.gradle @@ -19,9 +19,10 @@ ext.JAVA_SCRIPT = "${GRADLE_SCRIPT_DIR}/java.gradle" ext.coreModules = subprojects.findAll { p-> (!p.name.contains("test") && !p.name.contains("sample")) || p.name == "spring-ldap-test" } configure(allprojects) { - apply plugin: 'eclipse' - apply plugin: 'idea' - apply plugin: 'java' + apply plugin: 'propdeps' + apply plugin: 'propdeps-maven' + apply plugin: 'propdeps-idea' + apply plugin: 'propdeps-eclipse' group = "org.springframework.ldap" @@ -148,4 +149,4 @@ task distZip(type: Zip, dependsOn: [docsZip]) { artifacts { archives docsZip archives distZip -} \ No newline at end of file +}