Skip to content

Commit 21b0256

Browse files
committed
fix: downgrade flexmark to 0.62.2
0.64.0 requires Java 11, so we can't move that high
1 parent 1ed02dd commit 21b0256

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

project/Dependencies.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ object Dependencies {
1010
val `jackson-dataformat-yaml` =
1111
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % jacksonVersion
1212

13-
private val flexmarkVersion = "0.64.0"
13+
// Freeze on 0.62.x as 0.64.0 requires Java 11
14+
private val flexmarkVersion = "0.62.2"
1415

1516
val flexmarkDeps = Seq(
1617
"com.vladsch.flexmark" % "flexmark" % flexmarkVersion,
18+
"com.vladsch.flexmark" % "flexmark-util-ast" % flexmarkVersion,
1719
"com.vladsch.flexmark" % "flexmark-util-html" % flexmarkVersion,
1820
"com.vladsch.flexmark" % "flexmark-ext-anchorlink" % flexmarkVersion,
1921
"com.vladsch.flexmark" % "flexmark-ext-autolink" % flexmarkVersion,

0 commit comments

Comments
 (0)