Skip to content

Commit 3846094

Browse files
committed
Delete duplications
1 parent f2d83f8 commit 3846094

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

StudyplusAndroidSDK/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ dependencies {
2525
compile 'com.android.support:appcompat-v7:19.0.1'
2626
compile 'com.google.guava:guava:16.0'
2727

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'
28+
def forTesting = [
29+
'junit:junit:4.11',
30+
'org.robolectric:robolectric:2.3-SNAPSHOT',
31+
'com.squareup:fest-android:1.0.7',
32+
]
33+
forTesting.each{ testCompile it }
34+
forTesting.each{ instrumentTestCompile it }
3535
}
3636

3737
apply plugin: 'maven'

0 commit comments

Comments
 (0)