aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/build.gradle
diff options
context:
space:
mode:
authormar-v-in <github@rvin.mooo.com>2014-06-04 21:32:37 +0200
committermar-v-in <github@rvin.mooo.com>2014-06-04 21:32:37 +0200
commitcae0071342e746c934490298c3dd3ee230a2ee32 (patch)
tree5c540d7c8ad84b462fd3cbc87b0aea7c5513fc9c /OpenKeychain/build.gradle
parent6a637462782b4ce57ecf154edf0974114181b8ad (diff)
parent52f1f30846ad7efa6e6ae11ed96f5b68626bfb3b (diff)
downloadopen-keychain-cae0071342e746c934490298c3dd3ee230a2ee32.tar.gz
open-keychain-cae0071342e746c934490298c3dd3ee230a2ee32.tar.bz2
open-keychain-cae0071342e746c934490298c3dd3ee230a2ee32.zip
Merge branch 'master' into automatic-contact-discovery
Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r--OpenKeychain/build.gradle61
1 files changed, 25 insertions, 36 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index 738097fa0..374a63b28 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -1,13 +1,17 @@
apply plugin: 'android'
+apply plugin: 'android-test'
sourceSets {
- testLocal {
+ androidTest {
java.srcDir file('src/test/java')
- resources.srcDir file('src/test/resources')
+ // configure the set of classes for JUnit tests
+ // include '**/*Test.class'
}
}
dependencies {
+ // NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
+
compile 'com.android.support:support-v4:19.1.0'
compile 'com.android.support:appcompat-v7:19.1.0'
compile 'dnsjava:dnsjava:2.1.1'
@@ -24,24 +28,25 @@ dependencies {
compile project(':extern:spongycastle:prov')
compile project(':extern:AppMsg:library')
- // Dependencies for the `testLocal` task, make sure to list all your global dependencies here as well
- testLocalCompile 'junit:junit:4.11'
- testLocalCompile 'org.robolectric:robolectric:2.2'
- testLocalCompile 'com.google.android:android:4.1.1.4'
- testLocalCompile 'com.android.support:support-v4:19.1.0'
- testLocalCompile 'com.android.support:appcompat-v7:19.1.0'
- testLocalCompile project(':extern:openpgp-api-lib')
- testLocalCompile project(':extern:openkeychain-api-lib')
- testLocalCompile project(':extern:html-textview')
- testLocalCompile project(':extern:StickyListHeaders:library')
- testLocalCompile project(':extern:AndroidBootstrap:AndroidBootstrap')
- testLocalCompile project(':extern:zxing-qr-code')
- testLocalCompile project(':extern:zxing-android-integration')
- testLocalCompile project(':extern:spongycastle:core')
- testLocalCompile project(':extern:spongycastle:pg')
- testLocalCompile project(':extern:spongycastle:pkix')
- testLocalCompile project(':extern:spongycastle:prov')
- testLocalCompile project(':extern:AppMsg:library')
+ // Dependencies for the `instrumentTest` task, make sure to list all your global dependencies here as well
+ androidTestCompile 'junit:junit:4.10'
+ androidTestCompile 'org.robolectric:robolectric:2.3'
+ androidTestCompile 'com.squareup:fest-android:1.0.8'
+ androidTestCompile 'com.google.android:android:4.1.1.4'
+ androidTestCompile 'com.android.support:support-v4:19.1.0'
+ androidTestCompile 'com.android.support:appcompat-v7:19.1.0'
+ androidTestCompile project(':extern:openpgp-api-lib')
+ androidTestCompile project(':extern:openkeychain-api-lib')
+ androidTestCompile project(':extern:html-textview')
+ androidTestCompile project(':extern:StickyListHeaders:library')
+ androidTestCompile project(':extern:AndroidBootstrap:AndroidBootstrap')
+ androidTestCompile project(':extern:zxing-qr-code')
+ androidTestCompile project(':extern:zxing-android-integration')
+ androidTestCompile project(':extern:spongycastle:core')
+ androidTestCompile project(':extern:spongycastle:pg')
+ androidTestCompile project(':extern:spongycastle:pkix')
+ androidTestCompile project(':extern:spongycastle:prov')
+ androidTestCompile project(':extern:AppMsg:library')
}
android {
@@ -93,20 +98,6 @@ android {
}
}
-task localTest(type: Test, dependsOn: assemble) {
- testClassesDir = sourceSets.testLocal.output.classesDir
-
- android.sourceSets.main.java.srcDirs.each { dir ->
- def buildDir = dir.getAbsolutePath().split("\\" + File.separator)
- buildDir = (buildDir[0..(buildDir.length - 4)] + ['build', 'classes', 'debug']).join("\\" + File.separator)
-
- sourceSets.testLocal.compileClasspath += files(buildDir)
- sourceSets.testLocal.runtimeClasspath += files(buildDir)
- }
-
- classpath = sourceSets.testLocal.runtimeClasspath
-}
-
// NOTE: This disables Lint!
tasks.whenTaskAdded { task ->
if (task.name.equals("lint")) {
@@ -114,5 +105,3 @@ tasks.whenTaskAdded { task ->
}
}
-// NOTE: tests disabled!
-//check.dependsOn localTest