gradle cleanups

This commit is contained in:
Hannes Janetzek
2014-02-23 18:50:17 +01:00
parent c5479c18f6
commit dac9b8adad
12 changed files with 185 additions and 156 deletions

View File

@@ -9,9 +9,9 @@ buildscript {
}
}
allprojects {
apply plugin: 'idea'
apply from:'jdee.gradle'
allprojects {
group = 'org.oscim'
version = '0.5.9-SNAPSHOT'
@@ -19,11 +19,16 @@ allprojects {
repositories {
mavenCentral()
//maven { url 'https://github.com/hjanetzek/maven-repo/raw/master/' }
mavenLocal()
}
// create IntelliJ project settings - untested
apply plugin: 'idea'
}
subprojects {
// create eclipse project settings
apply plugin: 'eclipse'
task copySettings(type: Copy) {
@@ -33,4 +38,9 @@ subprojects {
}
eclipseProject.dependsOn copySettings
// create emacs JDEE project settings
// http://ignatyev-dev.blogspot.de/2013/07/gradle-projects-in-jdee.html
apply from:'../jdee.gradle'
}