Skip to content

Commit 665a268

Browse files
authored
Merge pull request #10935 from dotty-staging/cleanup-scala3doc-flexmark-deps
Cleanup Scala3doc flexmark dependencies
2 parents 0a8bb4b + 27d04d5 commit 665a268

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

project/Build.scala

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1538,6 +1538,7 @@ object Build {
15381538
products.iterator.map(_.getAbsolutePath.toString).mkString(" ")
15391539

15401540
val dokkaVersion = "1.4.10.2"
1541+
val flexmarkVersion = "0.42.12"
15411542

15421543
project.settings(commonBootstrappedSettings).
15431544
dependsOn(`scala3-compiler-bootstrapped`).
@@ -1549,7 +1550,16 @@ object Build {
15491550
"org.jetbrains.dokka" % "dokka-core" % dokkaVersion,
15501551
"org.jetbrains.dokka" % "dokka-base" % dokkaVersion,
15511552
"org.jetbrains.kotlinx" % "kotlinx-html-jvm" % "0.7.2", // Needs update when dokka version changes
1552-
"com.vladsch.flexmark" % "flexmark-all" % "0.42.12",
1553+
"com.vladsch.flexmark" % "flexmark" % flexmarkVersion,
1554+
"com.vladsch.flexmark" % "flexmark-html-parser" % flexmarkVersion,
1555+
"com.vladsch.flexmark" % "flexmark-ext-anchorlink" % flexmarkVersion,
1556+
"com.vladsch.flexmark" % "flexmark-ext-autolink" % flexmarkVersion,
1557+
"com.vladsch.flexmark" % "flexmark-ext-emoji" % flexmarkVersion,
1558+
"com.vladsch.flexmark" % "flexmark-ext-gfm-strikethrough" % flexmarkVersion,
1559+
"com.vladsch.flexmark" % "flexmark-ext-gfm-tables" % flexmarkVersion,
1560+
"com.vladsch.flexmark" % "flexmark-ext-gfm-tasklist" % flexmarkVersion,
1561+
"com.vladsch.flexmark" % "flexmark-ext-wikilink" % flexmarkVersion,
1562+
"com.vladsch.flexmark" % "flexmark-ext-yaml-front-matter" % flexmarkVersion,
15531563
"nl.big-o" % "liqp" % "0.6.7",
15541564
"org.jsoup" % "jsoup" % "1.13.1", // Needed to process .html files for static site
15551565
"args4j" % "args4j" % "2.33",

0 commit comments

Comments
 (0)