Skip to content

Commit b1592bc

Browse files
committed
Bumped Dokka to version 1.9.20
1 parent 771b8bd commit b1592bc

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

examples/lib/bld/bld-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bld.downloadExtensionJavadoc=false
22
bld.downloadExtensionSources=true
3-
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.1
3+
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.2
44
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
55
bld.downloadLocation=
66
bld.sourceDirectories=

src/bld/java/rife/bld/extension/CompileKotlinOperationBuild.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ public class CompileKotlinOperationBuild extends Project {
3333
public CompileKotlinOperationBuild() {
3434
pkg = "rife.bld.extension";
3535
name = "bld-kotlin";
36-
version = version(0, 9, 1);
36+
version = version(0, 9, 2);
3737

3838
javaRelease = 17;
3939
downloadSources = true;
4040
autoDownloadPurge = true;
4141
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, RIFE2_RELEASES);
4242

43-
var dokka = version(1, 9, 10);
43+
var dokka = version(1, 9, 20);
4444
var kotlin = version(1, 9, 22);
4545
scope(compile)
4646
.include(dependency("org.jetbrains.kotlin", "kotlin-compiler", kotlin))

src/test/java/rife/bld/extension/dokka/DokkaOperationTest.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,14 @@ void executeConstructProcessCommandListTest() {
5858
.executeConstructProcessCommandList();
5959

6060
var path = examples.getAbsolutePath();
61+
var dokkaJar = "1.9.20.jar";
6162
var matches = List.of("java",
62-
"-jar", path + "/lib/bld/dokka-cli-1.9.10.jar",
63-
"-pluginsClasspath", path + "/lib/bld/dokka-base-1.9.10.jar;" +
64-
path + "/lib/bld/analysis-kotlin-descriptors-1.9.10.jar;" +
65-
path + "/lib/bld/javadoc-plugin-1.9.10.jar;" +
66-
path + "/lib/bld/korte-jvm-2.7.0.jar;" +
67-
path + "/lib/bld/kotlin-as-java-plugin-1.9.10.jar;path1;path2;path3;path4",
63+
"-jar", path + "/lib/bld/dokka-cli-" + dokkaJar,
64+
"-pluginsClasspath", path + "/lib/bld/dokka-base-" + dokkaJar + ';' +
65+
path + "/lib/bld/analysis-kotlin-descriptors-" + dokkaJar + ';' +
66+
path + "/lib/bld/javadoc-plugin-" + dokkaJar + ';' +
67+
path + "/lib/bld/korte-jvm-4.0.10.jar;" +
68+
path + "/lib/bld/kotlin-as-java-plugin-" + dokkaJar + ";path1;path2;path3;path4",
6869
"-sourceSet", "-src " + path + "/src/main/kotlin",
6970
"-outputDir", path + "/build",
7071
"-delayTemplateSubstitution", "true",

0 commit comments

Comments
 (0)