Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit 0bf7641

Browse files
committed
Update Gradle wrapper to 8.13, bump Kotlin to 2.1.20, and MockK to 1.14.0; don't set strict version for commons anymore
1 parent f71347d commit 0bf7641

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

gradle/libs.versions.toml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
11
[versions]
22
agp = "8.7.3"
3-
android-desugar = "2.1.3"
4-
androidx-core = "1.15.0"
3+
android-desugar = "2.1.5"
4+
androidx-core = "1.16.0"
55
androidx-test-rules = "1.6.1"
66
androidx-test-runner = "1.6.2"
7-
commons-codec = { strictly = "1.17.1" }
8-
commons-lang = { strictly = "3.15.0" }
9-
dokka ="1.9.20"
7+
dokka = "1.9.20"
108
# noinspection GradleDependency
119
ical4j = "3.2.19" # final version; update to 4.x will require much work
1210
junit = "4.13.2"
13-
kotlin = "2.1.0"
14-
mockk = "1.13.13"
11+
kotlin = "2.1.20"
12+
mockk = "1.14.0"
1513
slf4j = "2.0.16"
1614

1715
[libraries]
1816
android-desugaring = { module = "com.android.tools:desugar_jdk_libs", version.ref = "android-desugar" }
1917
androidx-core = { module = "androidx.core:core-ktx", version.ref = "androidx-core" }
2018
androidx-test-rules = { module = "androidx.test:rules", version.ref = "androidx-test-rules" }
2119
androidx-test-runner = { module = "androidx.test:runner", version.ref = "androidx-test-runner" }
22-
commons-codec = { module = "commons-codec:commons-codec", version.ref = "commons-codec" }
23-
commons-lang = { module = "org.apache.commons:commons-lang3", version.ref = "commons-lang" }
2420
ical4j = { module = "org.mnode.ical4j:ical4j", version.ref = "ical4j" }
2521
junit = { module = "junit:junit", version.ref = "junit" }
2622
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

lib/build.gradle.kts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@ dependencies {
9494

9595
implementation(libs.androidx.core)
9696
api(libs.ical4j)
97-
// Force latest version of commons libraries
98-
implementation(libs.commons.codec)
99-
implementation(libs.commons.lang)
10097
implementation(libs.slf4j) // ical4j logging over java.util.Logger
10198

10299
androidTestImplementation(libs.androidx.test.rules)

0 commit comments

Comments
 (0)