agrest-docs-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.agrest.docs</groupId> <artifactId>agrest-docs-framework</artifactId> <version>4.9</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> <artifactId>agrest-docs</artifactId> <groupId>io.agrest.docs</groupId> <version>4.9</version> </parent> <artifactId>agrest-docs-framework</artifactId> <packaging>jar</packaging> <name>agrest-docs-framework: core framework docs</name> <build> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <executions> <!-- generate "embeddable" html content with front matter and without header/footer/styles --> <execution> <id>asciidoctor-html-web</id> <phase>generate-resources</phase> <goals> <goal>process-asciidoc</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>