evo-config-doclet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.atteo</groupId>
<artifactId>evo-config-doclet</artifactId>
<version>1.1</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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>evo-config-parent</artifactId>
<groupId>org.atteo</groupId>
<version>1.1</version>
</parent>
<artifactId>evo-config-doclet</artifactId>
<name>Evo Config Doclet</name>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.6</version>
<scope>system</scope>
<systemPath>/usr/java/jdk1.7.0_21/jre/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>test-doclet</id>
<phase>test</phase>
<goals>
<goal>test-javadoc</goal>
</goals>
</execution>
</executions>
<configuration>
<doclet>org.atteo.evo.config.doclet.ConfigDoclet</doclet>
<docletPath>${project.build.outputDirectory}:${org.atteo:evo-config:jar}:${com.google.guava:guava:jar}</docletPath>
<useStandardDocletOptions>true</useStandardDocletOptions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<minimizeJar>true</minimizeJar>
</configuration>
</plugin>
</plugins>
</build>
</project>