asciidoclet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.elnarion.asciidoc</groupId> <artifactId>asciidoclet</artifactId> <version>2.0.4</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/maven-v4_0_0.xsd"> <parent> <artifactId>elnarion-parent-pom</artifactId> <groupId>de.elnarion.maven</groupId> <version>2.0.7</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>de.elnarion.asciidoc</groupId> <artifactId>asciidoclet</artifactId> <name>AsciiDoc Javadoc Doclet</name> <version>2.0.4</version> <description>A Fork of Asciidoclet. Asciidoclet is a Javadoc Doclet that allows you to write Javadoc using the AsciiDoc format. This fork is used for java 8 and asciidoc 2.x compatibility</description> <url>http://asciidoctor.org</url> <issueManagement> <system>jira</system> <url>https://github.com/devlauer/asciidoclet/issues</url> </issueManagement> <developers> <developer> <id>devlauer</id> <name>Lauer</name> <email>dev.lauer@elnarion.de</email> <url>https://github.com/devlauer</url> <timezone>+1:00</timezone> </developer> </developers> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:devlauer/asciidoclet.git</connection> <developerConnection>scm:git:git@github.com:devlauer/asciidoclet.git</developerConnection> <tag>asciidoclet-2.0.4</tag> <url>http://github.com/devlauer/asciidoclet</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>1.8</source> <doclet>org.asciidoctor.Asciidoclet</doclet> <docletArtifact> <groupId>de.elnarion.asciidoc</groupId> <artifactId>asciidoclet</artifactId> <version>${project.version}</version> </docletArtifact> <additionalOptions>--base-dir ${project.basedir} --attribute "project_name=${project.name}" --attribute "project_version=${project.version}" --attribute "project_desc=${project.description}"</additionalOptions> <linksource>true</linksource> <overview>src/main/java/overview.adoc</overview> </configuration> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <header>NOTICE</header> <includes> <include>**/*.java</include> <include>**/*.xml</include> </includes> <excludes> <exclude>**/.*/**</exclude> <exclude>target/**</exclude> <exclude>**/AndroidManifest.xml</exclude> </excludes> <properties> <startYear>2013</startYear> <currentYear>2018</currentYear> <name>John Ericksen</name> </properties> <useDefaultExcludes>true</useDefaultExcludes> <strictCheck>true</strictCheck> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>shaded</shadedClassifierName> </configuration> </plugin> <plugin> <artifactId>maven-toolchains-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <goals> <goal>toolchain</goal> </goals> </execution> </executions> <configuration> <toolchains> <jdk> <version>8</version> </jdk> </toolchains> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>tools-jar</id> <dependencies> <dependency> <groupId>com.sun.tools</groupId> <artifactId>tools</artifactId> <version>8</version> <scope>system</scope> <systemPath>C:\Entwicklung\jdk\jdk8u322-b06\jre/../lib/tools.jar</systemPath> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.28.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>2.0.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>powermock-module-junit4-common</artifactId> <groupId>org.powermock</groupId> </exclusion> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <version>2.0.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>powermock-api-support</artifactId> <groupId>org.powermock</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.tools</groupId> <artifactId>tools</artifactId> <version>8</version> <scope>system</scope> <systemPath>C:\Entwicklung\jdk\jdk8u322-b06\jre/../lib/tools.jar</systemPath> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby</artifactId> <version>9.4.1.0</version> <scope>compile</scope> </dependency> </dependencies> </dependencyManagement> </project>