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 f2d83f8 commit 3846094Copy full SHA for 3846094
StudyplusAndroidSDK/build.gradle
@@ -25,13 +25,13 @@ dependencies {
25
compile 'com.android.support:appcompat-v7:19.0.1'
26
compile 'com.google.guava:guava:16.0'
27
28
- testCompile 'junit:junit:4.11'
29
- testCompile 'org.robolectric:robolectric:2.3-SNAPSHOT'
30
- testCompile 'com.squareup:fest-android:1.0.7'
31
-
32
- instrumentTestCompile 'junit:junit:4.11'
33
- instrumentTestCompile 'org.robolectric:robolectric:2.3-SNAPSHOT'
34
- instrumentTestCompile 'com.squareup:fest-android:1.0.7'
+ def forTesting = [
+ 'junit:junit:4.11',
+ 'org.robolectric:robolectric:2.3-SNAPSHOT',
+ 'com.squareup:fest-android:1.0.7',
+ ]
+ forTesting.each{ testCompile it }
+ forTesting.each{ instrumentTestCompile it }
35
}
36
37
apply plugin: 'maven'
0 commit comments