Skip to content

Commit

Permalink
Bump dependencies versions
Browse files Browse the repository at this point in the history
  • Loading branch information
usulkies committed Dec 21, 2021
1 parent 6db379c commit 58961a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
@@ -1,14 +1,14 @@
buildscript {
ext.kotlin_gradle_version = findProperty('kotlin.version')?.toString() ?: '1.3.72'
ext.android_gradle_version = '4.1.1'
ext.byte_buddy_version = '1.11.5'
ext.byte_buddy_version = '1.12.5'
ext.coroutines_version = '1.3.3'
ext.dexmaker_version = '2.28.1'
ext.objenesis_version = '3.1'
ext.objenesis_android_version = '2.6'
ext.junit_jupiter_version = '5.6.2'
ext.junit_vintage_version = '5.6.2'
ext.dokka_version = '1.5.30'
ext.dokka_version = '1.6.0'
ext.gradles = project.projectDir.toString() + "/gradle"

repositories {
Expand Down
4 changes: 2 additions & 2 deletions client-tests/jvm/build.gradle.kts
Expand Up @@ -53,8 +53,8 @@ dependencies {
exclude(group = "junit", module = "junit")
}

testImplementation("org.slf4j:slf4j-api:1.7.26")
testImplementation("ch.qos.logback:logback-classic:1.2.3")
testImplementation("org.slf4j:slf4j-api:1.7.32")
testImplementation("ch.qos.logback:logback-classic:1.2.9")

compileOnly("org.junit.jupiter:junit-jupiter-api:$junit_jupiter_version")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junit_jupiter_version")
Expand Down
Expand Up @@ -7,11 +7,11 @@ fun Project.kotlinVersion() = findProperty("kotlin.version")?.toString() ?: Deps
object Deps {
object Versions {
const val androidTools = "4.1.1"
const val dokka = "1.5.30"
const val dokka = "1.6.0"
const val kotlinDefault = "1.3.72"
const val coroutines = "1.3.3"
const val slfj = "1.7.26"
const val logback = "1.2.3"
const val slfj = "1.7.32"
const val logback = "1.2.9"
const val junitJupiter = "5.6.2"
const val junitVintage = "5.6.2"
}
Expand Down

0 comments on commit 58961a8

Please sign in to comment.