We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c9a293 commit 3956145Copy full SHA for 3956145
AndroidSDKTests/build.gradle
@@ -38,4 +38,15 @@ dependencies {
38
testCompile 'org.powermock:powermock-api-mockito:1.6.6'
39
testCompile 'org.powermock:powermock-classloading-xstream:1.6.6'
40
testCompile 'org.bouncycastle:bcmail-jdk15on:1.54'
41
+}
42
+
43
+task jarTests(type: Jar, dependsOn: "assembleDebugUnitTest") {
44
+ classifier = 'tests'
45
+ from "$buildDir/intermediates/classes/test/debug"
46
47
+configurations {
48
+ unitTestArtifact
49
50
+artifacts {
51
+ unitTestArtifact jarTests
52
}
0 commit comments