doxia-module-markdown
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-modules</artifactId> <version>2.0.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>doxia-module-markdown</artifactId> <name>Doxia :: Markdown Module</name> <description>A Doxia module for Markdown source documents.</description> <contributors> <contributor> <name>Vladimir Schneider</name> <email>vladimir@vladsch.com</email> <organization>vladsch.com</organization> <organizationUrl>https://vladsch.com/</organizationUrl> </contributor> <contributor> <name>Julien Nicoulaud</name> <email>julien.nicoulaud@gmail.com</email> <url>http://www.twitter.com/nicoulaj</url> <timezone>+1</timezone> </contributor> </contributors> <properties> <!-- 0.64.0 requires Java 11 --> <flexmarkVersion>0.62.2</flexmarkVersion> </properties> <dependencies> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-util-data</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-util-misc</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-util-sequence</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-util-ast</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-abbreviation</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-autolink</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-definition</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-escaped-character</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-footnotes</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-gfm-strikethrough</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-tables</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-typographic</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-wikilink</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-ext-yaml-front-matter</artifactId> <version>${flexmarkVersion}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>25.0.0</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-xhtml5</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-xml</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- install --> <plugin> <artifactId>maven-install-plugin</artifactId> <executions> <!-- integration-test --> <!-- Copy the Doxia XHTML5 module from our working directory to the local-repo --> <!-- We do that manually because the invoker:install goal (below) doesn't do it, as --> <!-- it's not the artifact we're working on, but the ones that are produced by our "siblings" --> <execution> <id>copy-doxia-module-xhtml5-to-local-repo</id> <goals> <goal>install-file</goal> </goals> <phase>integration-test</phase> <configuration> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <file>${project.basedir}/../doxia-module-xhtml5/target/doxia-module-xhtml5-${project.version}.jar</file> </configuration> </execution> <execution> <id>copy-doxia-to-local-repo</id> <goals> <goal>install-file</goal> </goals> <phase>integration-test</phase> <configuration> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <file>${project.basedir}/../../doxia-core/target/doxia-core-${project.version}.jar</file> </configuration> </execution> </executions> </plugin> <!-- maven-invoker-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <!-- <version>2.0.0</version> --> <configuration> <debug>false</debug> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <pomIncludes> <pomInclude>**/pom.xml</pomInclude> </pomIncludes> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <extraArtifacts /> <settingsFile>src/it/settings.xml</settingsFile> <goals> <goal>clean</goal> <goal>site</goal> </goals> </configuration> <!-- FIXME Disabling IT for now since we need a Doxia 2.0.0 compatible Site Plugin <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> --> </plugin> </plugins> </build> </project>