documentation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.agical.rmock</groupId>
<artifactId>documentation</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0"?><project>
<parent>
<artifactId>parent</artifactId>
<groupId>com.agical.rmock</groupId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.agical.rmock</groupId>
<artifactId>documentation</artifactId>
<name>Documentation</name>
<version>2.0.0</version>
<url>./documentation/index.html</url>
<build>
<plugins>
<plugin>
<groupId>com.agical.rmock</groupId>
<artifactId>rmock-maven-plugin</artifactId>
<executions>
<execution>
<id>Create TDDoc Documents</id>
<phase>pre-site</phase>
<goals>
<goal>tddoc_task</goal>
</goals>
</execution>
</executions>
<configuration>
<formatters>
<param>com.agical.rdoc.core.model.impl.DocBookTextFormatter</param>
<param>com.agical.rdoc.core.model.impl.XDocTextFormatter</param>
</formatters>
<postProcessorTemplates>
<param>docbook/document.vm</param>
<param>xdoc/simple.vm</param>
</postProcessorTemplates>
<postProcessorTargets>
<param>docbook/rmock.xml</param>
<param>xdoc/xdoc.xml</param>
</postProcessorTargets>
<docbook>
<use.extensions>1</use.extensions>
<body.start.indent>0</body.start.indent>
<toc.section.depth>4</toc.section.depth>
<generate.section.toc.level>0</generate.section.toc.level>
<toc.max.depth>4</toc.max.depth>
<toc.indent.width>24</toc.indent.width>
<section.autolabel>1</section.autolabel>
<section.autolabel.max.depth>4</section.autolabel.max.depth>
<section.label.includes.component.label>1</section.label.includes.component.label>
<shade.verbatim>1</shade.verbatim>
</docbook>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.3</source>
<target>1.3</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>com/agical/rmock/doc/DocRootSuite.class</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<xdocDirectory>${basedir}/target/rmock/xdoc</xdocDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.agical.rmock</groupId>
<artifactId>tddoc</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
<reporting />
<distributionManagement>
<status>deployed</status>
</distributionManagement>
</project>