Skip to content

Commit f1a72f0

Browse files
authored
Merge pull request #885 from MarathonLabs/feature/update-deps
chore(deps): update to latest
2 parents a317626 + 314cd99 commit f1a72f0

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ buildscript {
1616

1717

1818
plugins {
19-
id("io.gitlab.arturbosch.detekt") version "1.23.3"
20-
id("com.github.ben-manes.versions") version "0.49.0"
19+
id("io.gitlab.arturbosch.detekt") version "1.23.4"
20+
id("com.github.ben-manes.versions") version "0.51.0"
2121
}
2222

2323
configure<DetektExtension> {

buildSrc/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ repositories {
88

99
dependencies {
1010
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10")
11-
implementation("com.squareup:kotlinpoet:1.14.2")
11+
implementation("com.squareup:kotlinpoet:1.16.0")
1212
implementation("com.google.code.gson:gson:2.10.1")
1313
}

buildSrc/src/main/kotlin/Versions.kt

+15-15
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ object Versions {
55
val coroutines = "1.7.3"
66
val coroutinesTest = coroutines
77

8-
val androidCommon = "31.1.3"
8+
val androidCommon = "31.2.2"
99
val adam = "0.5.3"
1010
val dexTestParser = "2.3.4"
1111
val kotlinLogging = "3.0.5"
12-
val logbackClassic = "1.4.11"
12+
val logbackClassic = "1.4.14"
1313
val axmlParser = "1.0"
1414
val bugsnag = "3.7.1"
1515

1616
val junitGradle = "1.2.0"
17-
val androidGradleVersion = "8.1.3"
17+
val androidGradleVersion = "8.2.2"
1818
val gradlePluginPublish = "1.2.1"
1919
val gradlePluginShadow = "8.1.1"
2020

@@ -31,33 +31,33 @@ object Versions {
3131
val apacheCommonsIO = "2.11.0"
3232
val apacheCommonsCodec = "1.15"
3333
val okhttp = "4.12.0"
34-
val influxDbClient = "2.23"
35-
val influxDb2Client = "6.10.0"
36-
val clikt = "4.2.1"
34+
val influxDbClient = "2.24"
35+
val influxDb2Client = "6.12.0"
36+
val clikt = "4.2.2"
3737
val jacksonDatabind = "2.15.3"
3838
val jacksonKotlin = jacksonDatabind
3939
val jacksonYaml = jacksonDatabind
4040
val jacksonJSR310 = jacksonDatabind
4141
val jacksonAnnotations = jacksonDatabind
4242
val ddPlist = "1.27"
43-
val guava = "32.1.3-jre"
44-
val rsync4j = "3.2.7-5"
45-
val sshj = "0.37.0"
43+
val guava = "33.0.0-jre"
44+
val rsync4j = "3.2.7-6"
45+
val sshj = "0.38.0"
4646
val kotlinProcess = "1.4.1"
47-
val testContainers = "1.19.1"
47+
val testContainers = "1.19.4"
4848
val jupiterEngine = junit5
4949
val jansi = "2.4.1"
5050
val scalr = "4.2"
51-
val allureTestFilter = "2.24.0"
52-
val allureJava = "2.24.0"
51+
val allureTestFilter = "2.25.0"
52+
val allureJava = "2.25.0"
5353
val allureKotlin = "2.4.0"
5454
val allureEnvironment = "1.0.0"
55-
val mockitoKotlin = "5.1.0"
55+
val mockitoKotlin = "5.2.1"
5656
val dokka = "1.9.10"
57-
val koin = "3.5.0"
57+
val koin = "3.5.3"
5858
val jsonAssert = "1.5.1"
5959
val xmlUnit = "2.9.1"
60-
val assertk = "0.27.0"
60+
val assertk = "0.28.0"
6161
}
6262

6363
object BuildPlugins {

cli/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
jacoco
55
id("org.jetbrains.kotlin.jvm")
66
id("org.jetbrains.dokka")
7-
id("com.github.gmazzo.buildconfig") version "4.1.2"
7+
id("com.github.gmazzo.buildconfig") version "5.3.5"
88
}
99

1010
val enableJDB = false

configuration/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id("org.jetbrains.kotlin.jvm")
33
id("org.jetbrains.dokka")
44
jacoco
5-
id("com.github.gmazzo.buildconfig") version "4.1.2"
5+
id("com.github.gmazzo.buildconfig") version "5.3.5"
66
}
77

88
dependencies {

core/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id("org.jetbrains.kotlin.jvm")
77
id("org.jetbrains.dokka")
88
jacoco
9-
id("com.github.gmazzo.buildconfig") version "4.1.2"
9+
id("com.github.gmazzo.buildconfig") version "5.3.5"
1010
}
1111

1212
sourceSets {

sample/android-app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111

1212
plugins {
13-
id("com.github.ben-manes.versions") version "0.49.0"
13+
id("com.github.ben-manes.versions") version "0.51.0"
1414
}
1515

1616
fun isNonStable(version: String): Boolean {

sample/android-cucumber-app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111

1212
plugins {
13-
id("com.github.ben-manes.versions") version "0.49.0"
13+
id("com.github.ben-manes.versions") version "0.51.0"
1414
}
1515

1616
fun isNonStable(version: String): Boolean {

sample/android-library/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111

1212
plugins {
13-
id("com.github.ben-manes.versions") version "0.49.0"
13+
id("com.github.ben-manes.versions") version "0.51.0"
1414
}
1515

1616
fun isNonStable(version: String): Boolean {

0 commit comments

Comments
 (0)