appng-documentation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.appng</groupId> <artifactId>appng-documentation</artifactId> <version>1.24.5</version> </dependency>
<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> <artifactId>appng-documentation</artifactId> <name>appNG Documentation</name> <description>appNG Documentation</description> <properties> <maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format> <timestamp>${maven.build.timestamp}</timestamp> <phase>deploy</phase> <book.application>application</book.application> <book.platform>platform</book.platform> </properties> <parent> <groupId>org.appng</groupId> <artifactId>appng-parent</artifactId> <version>1.24.5</version> <relativePath>../pom.xml</relativePath> </parent> <build> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <configuration> <imagesDir>./</imagesDir> <skip>${doc.skip}</skip> <attributes> <icons>font</icons> <pagenums /> <toc /> <toclevels>3</toclevels> <idprefix /> <idseparator>-</idseparator> <numbered>true</numbered> <project-version>${project.version}</project-version> <project-name>${project.name}</project-name> <spring-version>${spring.version}</spring-version> <spring-data-version>${springData.version}</spring-data-version> <spring-data-jpa-version>${springDataJpa.version}</spring-data-jpa-version> <lucene-version>${lucene.version}</lucene-version> <manager-version>${appNG.manager.version}</manager-version> </attributes> </configuration> <executions> <execution> <id>html</id> <phase>package</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <backend>html5</backend> <sectids>true</sectids> <sourceHighlighter>prettify</sourceHighlighter> <outputDirectory>${project.build.directory}/generated-docs/html</outputDirectory> <sourceDocumentName>developerguide.adoc</sourceDocumentName> <attributes> <toc>left</toc> <linkcss>true</linkcss> <icons>font</icons> <sectanchors>true</sectanchors> <stylesheet>appng.css</stylesheet> </attributes> </configuration> </execution> <execution> <id>pdf</id> <phase>install</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <backend>pdf</backend> <sourceHighlighter>coderay</sourceHighlighter> <sourceDocumentName>developerguide.adoc</sourceDocumentName> <outputDirectory>${project.build.directory}/generated-docs/pdf</outputDirectory> </configuration> </execution> <execution> <id>html-admin</id> <phase>package</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <backend>html5</backend> <sectids>true</sectids> <sourceHighlighter>prettify</sourceHighlighter> <outputDirectory>${project.build.directory}/generated-docs/html</outputDirectory> <sourceDocumentName>administrationguide.adoc</sourceDocumentName> <attributes> <toc>left</toc> <linkcss>true</linkcss> <icons>font</icons> <sectanchors>true</sectanchors> <stylesheet>appng.css</stylesheet> </attributes> </configuration> </execution> <execution> <id>pdf-admin</id> <phase>install</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <backend>pdf</backend> <sourceHighlighter>coderay</sourceHighlighter> <sourceDocumentName>administrationguide.adoc</sourceDocumentName> <outputDirectory>${project.build.directory}/generated-docs/pdf</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.appng</groupId> <artifactId>appng-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.appng</groupId> <artifactId>appng-persistence</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.appng</groupId> <artifactId>appng-testsupport</artifactId> <scope>test</scope> </dependency> </dependencies> </project>