This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit ff593e5c3e68aa7cd60bd31356897965c642f68d Author: Juan Pablo Santos RodrÃguez <[email protected]> AuthorDate: Thu Jan 13 11:25:26 2022 +0100 JSPWIKI-802: add definition and tables flexmark extensions' --- LICENSE | 4 +++- jspwiki-markdown/pom.xml | 10 ++++++++++ pom.xml | 12 ++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 0a9cc5a..9538ed5 100644 --- a/LICENSE +++ b/LICENSE @@ -222,8 +222,10 @@ commons-logging-1.0.4.jar LICENSE commons-text-1.9.jar LICENSE ehcache-2.10.9.2.jar LICENSE flexmark-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark -flexmark-ext-attributes-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark +flexmark-ext-attributes-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark +flexmark-ext-definition-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark flexmark-ext-footnotes-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark +flexmark-ext-tables-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark flexmark-ext-toc-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark flexmark-util-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark flexmark-util-ast-0.62.2.jar ./jspwiki-war/src/main/config/doc/LICENSE.flexmark diff --git a/jspwiki-markdown/pom.xml b/jspwiki-markdown/pom.xml index ce749d8..8f0aafe 100644 --- a/jspwiki-markdown/pom.xml +++ b/jspwiki-markdown/pom.xml @@ -58,11 +58,21 @@ <dependency> <groupId>com.vladsch.flexmark</groupId> + <artifactId>flexmark-ext-definition</artifactId> + </dependency> + + <dependency> + <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-footnotes</artifactId> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> + <artifactId>flexmark-ext-tables</artifactId> + </dependency> + + <dependency> + <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-toc</artifactId> </dependency> diff --git a/pom.xml b/pom.xml index 3231ebb..a3243a7 100644 --- a/pom.xml +++ b/pom.xml @@ -173,12 +173,24 @@ <dependency> <groupId>com.vladsch.flexmark</groupId> + <artifactId>flexmark-ext-definition</artifactId> + <version>${flexmark.version}</version> + </dependency> + + <dependency> + <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-footnotes</artifactId> <version>${flexmark.version}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> + <artifactId>flexmark-ext-tables</artifactId> + <version>${flexmark.version}</version> + </dependency> + + <dependency> + <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-toc</artifactId> <version>${flexmark.version}</version> </dependency>
