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
     1.1 --- a/build.gradle.kts	Fri Dec 18 16:16:54 2020 +0100
     1.2 +++ b/build.gradle.kts	Sun Dec 20 11:06:25 2020 +0100
     1.3 @@ -9,6 +9,7 @@
     1.4  
     1.5  val log4jVersion = "2.13.1"
     1.6  val slf4jVersion = "1.7.30"
     1.7 +val flexmarkVersion = "0.62.2"
     1.8  
     1.9  repositories {
    1.10      mavenCentral()
    1.11 @@ -32,7 +33,10 @@
    1.12                  implementation("org.slf4j:slf4j-api:${slf4jVersion}")
    1.13                  implementation("org.apache.logging.log4j:log4j-core:${log4jVersion}")
    1.14                  implementation("org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}")
    1.15 -                implementation("com.vladsch.flexmark:flexmark-all:0.62.2")
    1.16 +                implementation("com.vladsch.flexmark:flexmark:${flexmarkVersion}")
    1.17 +                implementation("com.vladsch.flexmark:flexmark-util-data:${flexmarkVersion}")
    1.18 +                implementation("com.vladsch.flexmark:flexmark-ext-tables:${flexmarkVersion}")
    1.19 +                implementation("com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:${flexmarkVersion}")
    1.20              }
    1.21          }
    1.22      }

mercurial