rest-markdown-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.schegge</groupId> <artifactId>rest-markdown-maven-plugin</artifactId> <version>1.6.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>de.schegge</groupId> <artifactId>rest-markdown-maven-plugin</artifactId> <version>1.6.1</version> <packaging>maven-plugin</packaging> <name>REST Markdown Maven Plugin</name> <description>A simple Maven plugin to convert openapi descriptions files to Asciidoctor.</description> <url>https://gitlab.com/schegge-projects/rest-markdown-maven-plugin</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Jens Kaiser</name> <email>schegge42@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://gitlab.com/schegge-projects/rest-markdown-maven-plugin.git</connection> <developerConnection>scm:git:https://gitlab.com/schegge-projects/rest-markdown-maven-plugin.git</developerConnection> <url>https://gitlab.com/schegge-projects/rest-markdown-maven-plugin</url> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>de.schegge</groupId> <artifactId>stream-collector-utilities</artifactId> <version>0.1.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.9.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.13.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.17.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.17.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>de.schegge</groupId> <artifactId>freshmarker</artifactId> <version>1.8.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>