diff --git a/build.gradle.kts b/build.gradle.kts index 04a64156a8..02404acb50 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -110,9 +110,10 @@ subprojects { tree.include("module-info.class") tree.forEach { BuildUtil.stripPreview( - root.toPath(), it.toPath(), - false, false, - "java/lang/RuntimeException", + /* root = */ root.toPath(), + /* classFile = */ it.toPath(), + /* forceJava21 = */ false, + /* verbose = */ false, ) } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1742dae94b..ea2bf0791a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,7 +12,8 @@ annotations = "26.0.1" kala = "0.76.0" # https://picocli.info picocli = "4.7.6" -build-util = "0.0.28" +# https://repo1.maven.org/maven2/org/aya-prover/upstream/build-util/ +build-util = "0.0.29" # https://github.com/jline/jline3 jline = "3.27.1" # https://github.com/commonmark/commonmark-java