Skip to content
Snippets Groups Projects
Commit d895d338 authored by Sébastien Toque's avatar Sébastien Toque
Browse files

Use root project dependencies versions

parent 079b0faa
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
api "com.android.support:appcompat-v7:$rootProject.ext.appCompatVersion"
testImplementation 'junit:junit:4.12'
testImplementation "junit:junit:$rootProject.ext.junitVersion"
}
def properties = new Properties()
......
......@@ -65,6 +65,6 @@ dependencies {
api "com.android.support:support-v4:$rootProject.ext.appCompatVersion"
api "com.android.support:support-compat:$rootProject.ext.appCompatVersion"
api "com.android.support:support-fragment:$rootProject.ext.appCompatVersion"
testImplementation 'junit:junit:4.12'
testImplementation "junit:junit:$rootProject.ext.junitVersion"
implementation project(':tools')
}
\ No newline at end of file
......@@ -31,9 +31,9 @@ dependencies {
api "com.android.support:support-tv-provider:$rootProject.ext.appCompatVersion"
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
testImplementation "junit:junit:$rootProject.ext.junitVersion"
androidTestImplementation "com.android.support.test:runner:$rootProject.ext.supportTest"
androidTestImplementation "com.android.support.test.espresso:espresso-core:$rootProject.espressoVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
repositories {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment