diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2014-05-30 19:18:34 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2014-05-30 19:18:34 +0200 |
| commit | d30e8a068d5999dda8c2bf42eea25a4592b2ffa2 (patch) | |
| tree | 335eeb990e2033b2a198755561f1ad6104bc2f4d /build.gradle | |
| parent | 88b2aef17e6220429ff27ebd1e6f86cbce2d72b4 (diff) | |
| parent | f8f7ba819ef705f30e3712c38b6e669c249dca12 (diff) | |
| download | cgeo-d30e8a068d5999dda8c2bf42eea25a4592b2ffa2.zip cgeo-d30e8a068d5999dda8c2bf42eea25a4592b2ffa2.tar.gz cgeo-d30e8a068d5999dda8c2bf42eea25a4592b2ffa2.tar.bz2 | |
Merge remote-tracking branch 'schwabe/cgeo_gradle'
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..93e9c85 --- /dev/null +++ b/build.gradle @@ -0,0 +1,27 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + repositories { + mavenCentral() + } + dependencies { + classpath 'com.android.tools.build:gradle:0.10.+' + // the latest version of the android-apt plugin + classpath 'com.neenbedankt.gradle.plugins:android-apt:1.1' + //gradle-properties + // classpath 'net.saliman:gradle-properties-plugin:1.2.0' + } +} + +allprojects { + //apply plugin: 'properties' + + repositories { + mavenCentral() + } + //ant.properties : java.compilerargs=-Xlint + tasks.withType(JavaCompile) { + options.compilerArgs << "-Xlint" + } +} + |
