aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-10-17 14:43:00 +0200
committerGitHub <noreply@github.com>2023-10-17 14:43:00 +0200
commitfca686c5cb62bd8aeb2390763280bb4dd00bdd43 (patch)
treebc649ed93de247b3518a8ad36fb3b4246b999ce2
parent73b81ac375c927176205543dec813faa32abe811 (diff)
downloaddokka-fca686c5cb62bd8aeb2390763280bb4dd00bdd43.tar.gz
dokka-fca686c5cb62bd8aeb2390763280bb4dd00bdd43.tar.bz2
dokka-fca686c5cb62bd8aeb2390763280bb4dd00bdd43.zip
Bump korte aka korlibs-template to 4.0.10 (#3205)
-rw-r--r--gradle/libs.versions.toml7
-rw-r--r--plugins/javadoc/build.gradle.kts2
-rw-r--r--plugins/javadoc/src/main/kotlin/org/jetbrains/dokka/javadoc/renderer/KorteJavadocRenderer.kt2
3 files changed, 7 insertions, 4 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index ba848dc2..0060b651 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -22,7 +22,7 @@ intellij-platform = "213.7172.25"
## HTML
jsoup = "1.15.3"
freemarker = "2.3.31"
-soywiz-korte = "2.7.0"
+korlibs-template = "4.0.10"
kotlinx-html = "0.9.1"
## Markdown
@@ -94,7 +94,10 @@ intellij-platform-util-rt = { module = "com.jetbrains.intellij.platform:util-rt"
jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" }
freemarker = { module = "org.freemarker:freemarker", version.ref = "freemarker" }
kotlinx-html = { module = "org.jetbrains.kotlinx:kotlinx-html-jvm", version.ref = "kotlinx-html" }
-soywiz-korte = { module = "com.soywiz.korlibs.korte:korte-jvm", version.ref = "soywiz-korte" }
+
+# for korlibs-template: the package was renamed and the library's source was moved, but the artifact name is still old,
+# so there's a mismatch. might change in the future, follow https://github.com/korlibs/korge/issues/1836 for updates
+korlibs-template = { module = "com.soywiz.korlibs.korte:korte-jvm", version.ref = "korlibs-template" }
#### Markdown ####
jetbrains-markdown = { module = "org.jetbrains:markdown", version.ref = "jetbrains-markdown" }
diff --git a/plugins/javadoc/build.gradle.kts b/plugins/javadoc/build.gradle.kts
index e7bdc67e..2a04366b 100644
--- a/plugins/javadoc/build.gradle.kts
+++ b/plugins/javadoc/build.gradle.kts
@@ -17,7 +17,7 @@ dependencies {
implementation(projects.plugins.kotlinAsJava)
implementation(kotlin("reflect"))
- implementation(libs.soywiz.korte)
+ implementation(libs.korlibs.template)
implementation(libs.kotlinx.html)
implementation(libs.kotlinx.coroutines.core)
diff --git a/plugins/javadoc/src/main/kotlin/org/jetbrains/dokka/javadoc/renderer/KorteJavadocRenderer.kt b/plugins/javadoc/src/main/kotlin/org/jetbrains/dokka/javadoc/renderer/KorteJavadocRenderer.kt
index 658e42ed..cfc4bb2a 100644
--- a/plugins/javadoc/src/main/kotlin/org/jetbrains/dokka/javadoc/renderer/KorteJavadocRenderer.kt
+++ b/plugins/javadoc/src/main/kotlin/org/jetbrains/dokka/javadoc/renderer/KorteJavadocRenderer.kt
@@ -4,7 +4,7 @@
package org.jetbrains.dokka.javadoc.renderer
-import com.soywiz.korte.*
+import korlibs.template.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch