Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
Add ext properties about logbackVersion.
  • Loading branch information
aeharvlee committed Jun 2, 2021
1 parent 1eab04e commit 6390beb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android_instrumented_test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ dependencies {
androidTestImplementation "junit:junit:$project.junitVersion"
androidTestImplementation "androidx.test:runner:$project.androidxTestRunnerVersion"
androidTestImplementation "androidx.test:rules:$project.androidxTestRulesVersion"
androidTestImplementation "ch.qos.logback:logback-core:1.2.3",
"ch.qos.logback:logback-classic:1.2.3"
androidTestImplementation "ch.qos.logback:logback-core:$project.logbackVersion",
"ch.qos.logback:logback-classic:$project.logbackVersion"
}
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ buildscript {
ext.junitVersion = '4.12'
ext.slf4jVersion = '1.7.25'
ext.ipfsVersion = '1.3.3'
ext.logbackVersion = '1.2.3'
ext.andoridToolsVersion= '4.1.3'
ext.androidSdkVersion = 30
ext.androidBuildToolsVersion = "30.0.3"
Expand Down Expand Up @@ -52,8 +53,8 @@ configure(allprojects.findAll {it.name != 'android_instrumented_test'}) {

dependencies {
testCompile "junit:junit:$junitVersion"
testCompile "ch.qos.logback:logback-core:1.2.3",
"ch.qos.logback:logback-classic:1.2.3"
testCompile "ch.qos.logback:logback-core:$logbackVersion",
"ch.qos.logback:logback-classic:$logbackVersion"
}
}

Expand Down

0 comments on commit 6390beb

Please sign in to comment.