plectrum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 9e815d4a2740008cc77749169e97499031e8cac1
parent 0737edfc2290ef880b7f1cb74689f51d2b5152af
Author: gstraube <gstraube@mailbox.org>
Date:   Fri,  2 Nov 2018 16:26:15 +0100

Use consistent notation when declaring dependencies

Signed-off-by: gstraube <gstraube@mailbox.org>

Diffstat:
Mapp/build.gradle | 17++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/app/build.gradle b/app/build.gradle @@ -33,21 +33,24 @@ android { dependencies { androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', { - exclude group: 'com.android.support', module: 'support-annotations' }) + exclude group: 'com.android.support', module: 'support-annotations' + }) androidTestImplementation('com.android.support.test:runner:1.0.2', { - exclude group: 'com.android.support', module: 'support-annotations' }) + exclude group: 'com.android.support', module: 'support-annotations' + }) androidTestImplementation('com.android.support.test:rules:1.0.2', { - exclude group: 'com.android.support', module: 'support-annotations' }) + exclude group: 'com.android.support', module: 'support-annotations' + }) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.jaredrummler:material-spinner:1.2.5' implementation 'com.shawnlin:number-picker:2.4.6' - implementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '1.7.4' + implementation 'org.powermock:powermock-api-mockito2:1.7.4' testImplementation 'junit:junit:4.12' - testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3' - testImplementation group: 'org.robolectric', name: 'robolectric', version: '3.8' //4.0-alpha-3 - testImplementation group: 'org.powermock', name: 'powermock-module-junit4', version: '1.7.4' + testImplementation 'org.hamcrest:hamcrest-all:1.3' + testImplementation 'org.robolectric:robolectric:3.8' + testImplementation 'org.powermock:powermock-module-junit4:1.7.4' }