# HG changeset patch # User Mike Becker # Date 1608458785 -3600 # Node ID 6eede6088d419963b8f8f476fd307b52b070a57f # Parent b1fc8aed59694917f4ce5d018b0bba9d99bf5875 minimize footprint of flexmark - fixes #116 diff -r b1fc8aed5969 -r 6eede6088d41 build.gradle.kts --- a/build.gradle.kts Fri Dec 18 16:16:54 2020 +0100 +++ b/build.gradle.kts Sun Dec 20 11:06:25 2020 +0100 @@ -9,6 +9,7 @@ val log4jVersion = "2.13.1" val slf4jVersion = "1.7.30" +val flexmarkVersion = "0.62.2" repositories { mavenCentral() @@ -32,7 +33,10 @@ implementation("org.slf4j:slf4j-api:${slf4jVersion}") implementation("org.apache.logging.log4j:log4j-core:${log4jVersion}") implementation("org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}") - implementation("com.vladsch.flexmark:flexmark-all:0.62.2") + implementation("com.vladsch.flexmark:flexmark:${flexmarkVersion}") + implementation("com.vladsch.flexmark:flexmark-util-data:${flexmarkVersion}") + implementation("com.vladsch.flexmark:flexmark-ext-tables:${flexmarkVersion}") + implementation("com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:${flexmarkVersion}") } } }