File tree Expand file tree Collapse file tree 4 files changed +314
-291
lines changed
src/test/kotlin/com/faire/gradle/analyze Expand file tree Collapse file tree 4 files changed +314
-291
lines changed Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff line change 11@file:Suppress(" InvalidPackageDeclaration" )
22
33object Versions {
4- val kotlin = " 1.4.10 "
4+ val kotlin = " 1.4.30 "
55}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments