commonmark-ext-gfm-tables
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.atlassian.commonmark</groupId> <artifactId>commonmark-ext-gfm-tables</artifactId> <version>0.17.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.atlassian.commonmark</groupId> <artifactId>commonmark-parent</artifactId> <version>0.17.0</version> </parent> <artifactId>commonmark-ext-gfm-tables</artifactId> <name>commonmark-java extension for tables</name> <description>commonmark-java extension for GFM tables using "|" pipes (GitHub Flavored Markdown)</description> <dependencies> <dependency> <groupId>com.atlassian.commonmark</groupId> <artifactId>commonmark</artifactId> </dependency> <dependency> <groupId>com.atlassian.commonmark</groupId> <artifactId>commonmark-test-util</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.commonmark.ext.gfm.tables</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <distributionManagement> <relocation> <groupId>org.commonmark</groupId> </relocation> </distributionManagement> </project>