summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorkLeZ <julius8774@gmail.com>2014-09-21 15:36:23 +0200
committerkLeZ <julius8774@gmail.com>2014-09-21 15:36:23 +0200
commit7af6cb37ce4ef4e9fbe1aa6bab6149d68c7f3e53 (patch)
treeea99c82c7455c88c80f0234f4a6ae02daf6d79dd /app/build.gradle
parent6c55f1ed2bf263f9ab8fac1de6877937b69d6992 (diff)
Added Eclipse Integration
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 26a2cd04..c2842999 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,9 +1,10 @@
apply plugin: 'com.android.application'
+apply from: 'copyLibs.gradle' // enable 'copyLibs.gradle' script plugin
+apply plugin: 'eclipse'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
-
defaultConfig {
applicationId "com.zeapo.pwdstore"
minSdkVersion 15
@@ -23,7 +24,7 @@ repositories {
}
dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
+ //compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':libraries:openpgp-api-lib')
compile 'org.eclipse.jgit:org.eclipse.jgit:3.4.1.+'
compile 'org.apache.commons:commons-io:1.3.2'
@@ -31,3 +32,8 @@ dependencies {
transitive = true
}
}
+tasks.findAll { // make all tasks whose name starts with 'assemble'...
+ it.name.startsWith 'assemble'
+}.each { // ... depending on 'copyDependenciesIntoLibs' task from 'copyLibs.gradle' script plugin
+ it.dependsOn copyDependenciesIntoLibs
+}