summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorkLeZ <julius8774@gmail.com>2014-09-22 19:18:04 +0200
committerkLeZ <julius8774@gmail.com>2014-09-22 19:18:04 +0200
commit1e860374e2df56bbbbbb70ad6c32729655c5898c (patch)
treee2de73fade3e1c5f224dcc54321c05922697c945 /app/build.gradle
parentf28f8cdb65d7d2fc3436d16a342e61b9154ad817 (diff)
parent7af6cb37ce4ef4e9fbe1aa6bab6149d68c7f3e53 (diff)
Merge remote-tracking branch 'origin/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
+}