Declare common dependency versions in root gradle

This commit is contained in:
TacoTheDank 2021-08-07 17:51:09 -04:00
parent 71b9fd0076
commit cf9e678223
3 changed files with 12 additions and 6 deletions

View file

@ -1,6 +1,6 @@
dependencies {
testImplementation 'junit:junit:4.13.1'
testImplementation "junit:junit:$junitVersion"
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
implementation 'com.github.spotbugs:spotbugs-annotations:4.2.3'
implementation "com.github.TeamNewPipe:nanojson:$nanojsonVersion"
implementation "com.github.spotbugs:spotbugs-annotations:$spotbugsVersion"
}