minimize footprint of flexmark - fixes #116

Sun, 20 Dec 2020 11:06:25 +0100

author
Mike Becker <universe@uap-core.de>
date
Sun, 20 Dec 2020 11:06:25 +0100
changeset 166
6eede6088d41
parent 165
b1fc8aed5969
child 167
3f30adba1c63

minimize footprint of flexmark - fixes #116

build.gradle.kts file | annotate | diff | comparison | revisions
--- 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}")
             }
         }
     }

mercurial