Bumped dependencies

Bumped Dokka to version 2.0.0
Bumped bld PMD extension to version 1.1.7
Bumped bld Kotlin extension to version 1.0.3
Bumped Kotlin to version 2.0.21
Bumped JUnit to version 5.11.4
This commit is contained in:
Erik C. Thauvin 2024-12-19 06:54:14 -08:00
parent b8a02dce9e
commit 7b7a17393c
Signed by: erik
GPG key ID: 776702A6A2DA330E
6 changed files with 10 additions and 10 deletions

View file

@ -42,7 +42,7 @@ public class DokkaOperationBuild extends Project {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, RIFE2_RELEASES, RIFE2_SNAPSHOTS);
var dokka = version(1, 9, 20);
var dokka = version(2, 0, 0);
scope(compile)
.include(dependency("org.jetbrains.dokka", "dokka-cli", dokka))
.include(dependency("org.jetbrains.dokka", "dokka-base", dokka))
@ -52,8 +52,8 @@ public class DokkaOperationBuild extends Project {
.include(dependency("org.jetbrains.dokka", "jekyll-plugin", dokka))
.include(dependency("com.uwyn.rife2", "bld", version(2, 1, 0)));
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 11, 3)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 11, 3)))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 11, 4)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 11, 4)))
.include(dependency("org.assertj", "assertj-core", version(3, 26, 3)));
javadocOperation()

View file

@ -132,7 +132,7 @@ class DokkaOperationTest {
}
var path = EXAMPLES.getAbsolutePath();
var dokkaJar = "1.9.20.jar";
var dokkaJar = "2.0.0.jar";
var matches = List.of("java",
"-cp", path + "/lib/bld/dokka-cli-" + dokkaJar,
"org.jetbrains.dokka.MainKt",