summarylogtreecommitdiffstats
path: root/0002-embed-plugin-dependencies.patch
diff options
context:
space:
mode:
authorDominic2022-08-21 16:31:25 +0200
committerDominic2022-08-21 16:31:25 +0200
commitb527f1720c3f487664e98cb996c86abb6277663f (patch)
treee72e96e71314131a87f3e7b7ad9e73258140632d /0002-embed-plugin-dependencies.patch
downloadaur-b527f1720c3f487664e98cb996c86abb6277663f.tar.gz
dokka 1.7.10
Diffstat (limited to '0002-embed-plugin-dependencies.patch')
-rw-r--r--0002-embed-plugin-dependencies.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/0002-embed-plugin-dependencies.patch b/0002-embed-plugin-dependencies.patch
new file mode 100644
index 000000000000..3421eb4c48ef
--- /dev/null
+++ b/0002-embed-plugin-dependencies.patch
@@ -0,0 +1,14 @@
+--- runners/cli/build.gradle.kts 2022-08-21 15:44:14.274863135 +0200
++++ runners/cli/build.gradle.kts 2022-08-21 15:58:28.329169409 +0200
+@@ -10,6 +15,11 @@
+ implementation(project(":core"))
+ implementation(kotlin("stdlib"))
+ testImplementation(kotlin("test-junit"))
++
++ val kotlinx_html_version: String by project
++ implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:$kotlinx_html_version")
++
++ implementation(project(":kotlin-analysis"))
+ }
+
+ tasks {