Skip to content

Commit 2f11520

Browse files
committed
Using newer version of dokka and using stdlib for kotlin instead of jdk8
1 parent 6d9362c commit 2f11520

5 files changed

Lines changed: 6 additions & 12 deletions

File tree

dist/dist-kotlin-extensions/src/main/assembly/dependencies.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<!-- Kotlin Extensions -->
4444
<exclude>io.rest-assured:kotlin-extensions</exclude>
4545
<!-- Kotlin -->
46-
<exclude>org.jetbrains.kotlin:kotlin-stdlib-jdk8</exclude>
46+
<exclude>org.jetbrains.kotlin:kotlin-stdlib</exclude>
4747
<!-- JsonPath -->
4848
<exclude>io.rest-assured:json-path</exclude>
4949
<exclude>com.fasterxml.jackson.core:jackson-databind</exclude>

modules/kotlin-extensions/pom.xml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependencies>
3434
<dependency>
3535
<groupId>org.jetbrains.kotlin</groupId>
36-
<artifactId>kotlin-stdlib-jdk8</artifactId>
36+
<artifactId>kotlin-stdlib</artifactId>
3737
</dependency>
3838
<dependency>
3939
<groupId>io.rest-assured</groupId>
@@ -57,12 +57,6 @@
5757
<profiles>
5858
<profile>
5959
<id>release</id>
60-
<!-- We disable this plugin during normal build since dokka doesn't work with JDK11. We get the following error when using JDK11:
61-
62-
[ERROR] Failed to execute goal org.jetbrains.dokka:dokka-maven-plugin:0.9.18:dokka (default) on project kotlin-extensions: Execution default of goal org.jetbrains.dokka:dokka-maven-plugin:0.9.18:dokka failed: A required class was missing while executing org.jetbrains.dokka:dokka-maven-plugin:0.9.18:dokka: com/sun/tools/doclets/formats/html/HtmlDoclet
63-
64-
This is a know issue! See https://github.com/Kotlin/dokka/issues/294
65-
-->
6660
<build>
6761
<plugins>
6862
<plugin>

modules/spring-mock-mvc-kotlin-extensions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependencies>
3535
<dependency>
3636
<groupId>org.jetbrains.kotlin</groupId>
37-
<artifactId>kotlin-stdlib-jdk8</artifactId>
37+
<artifactId>kotlin-stdlib</artifactId>
3838
</dependency>
3939
<dependency>
4040
<groupId>io.rest-assured</groupId>

modules/spring-web-test-client-kotlin-extensions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependencies>
3535
<dependency>
3636
<groupId>org.jetbrains.kotlin</groupId>
37-
<artifactId>kotlin-stdlib-jdk8</artifactId>
37+
<artifactId>kotlin-stdlib</artifactId>
3838
</dependency>
3939
<dependency>
4040
<groupId>io.rest-assured</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<assertj-core.version>3.27.4</assertj-core.version>
7373
<scribe.version>2.5.3</scribe.version>
7474
<guava.version>33.2.1-jre</guava.version>
75-
<dokka.version>1.9.20</dokka.version>
75+
<dokka.version>2.1.0</dokka.version>
7676

7777
<duplicate-finder-mavwen-plugin.phase>package</duplicate-finder-mavwen-plugin.phase>
7878
</properties>
@@ -490,7 +490,7 @@
490490
</dependency>
491491
<dependency>
492492
<groupId>org.jetbrains.kotlin</groupId>
493-
<artifactId>kotlin-stdlib-jdk8</artifactId>
493+
<artifactId>kotlin-stdlib</artifactId>
494494
<version>${kotlin.version}</version>
495495
</dependency>
496496
<dependency>

0 commit comments

Comments
 (0)