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 +}