diff options
author | kLeZ <julius8774@gmail.com> | 2014-09-22 19:18:04 +0200 |
---|---|---|
committer | kLeZ <julius8774@gmail.com> | 2014-09-22 19:18:04 +0200 |
commit | 1e860374e2df56bbbbbb70ad6c32729655c5898c (patch) | |
tree | e2de73fade3e1c5f224dcc54321c05922697c945 /app/build.gradle | |
parent | f28f8cdb65d7d2fc3436d16a342e61b9154ad817 (diff) | |
parent | 7af6cb37ce4ef4e9fbe1aa6bab6149d68c7f3e53 (diff) |
Merge remote-tracking branch 'origin/eclipse-integration'
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 10 |
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 +} |