Skip to content

Commit 2047db8

Browse files
committed
Updating Kotlin to version 1.4.30, fixing asm dependency issue, updating tests to match source code
1 parent be27280 commit 2047db8

File tree

4 files changed

+314
-291
lines changed

4 files changed

+314
-291
lines changed

build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ dependencies {
2323
implementation(kotlin("stdlib"))
2424
implementation(kotlin("stdlib-jdk8"))
2525

26-
implementation("org.apache.maven.shared:maven-dependency-analyzer:1.11.2")
26+
implementation("org.apache.maven.shared:maven-dependency-analyzer:1.11.3")
27+
// maven-dependency-analyzer:1.11.3 depends on an earlier version of asm which doesn't support jdk 16
28+
// Depending on asm:9.2 directly resolves this.
29+
implementation("org.ow2.asm:asm:9.2")
2730

2831
testImplementation("junit:junit:4.12")
2932
testImplementation("org.assertj:assertj-core:3.9.1")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@file:Suppress("InvalidPackageDeclaration")
22

33
object Versions {
4-
val kotlin = "1.4.10"
4+
val kotlin = "1.4.30"
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)