wikbook.apt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.wikbook</groupId>
<artifactId>wikbook.apt</artifactId>
<version>0.9.0</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">
<parent>
<artifactId>wikbook.parent</artifactId>
<groupId>org.wikbook</groupId>
<version>0.9.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wikbook.apt</artifactId>
<packaging>jar</packaging>
<name>Wikbook apt plugin</name>
<dependencies>
<dependency>
<groupId>com.google.code.javaparser</groupId>
<artifactId>javaparser</artifactId>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<compilerArgument>-proc:none</compilerArgument>
<!-- We use the verbose flag to pass something to the compiler to substitute to the compiler
argument for the compile phase -->
<testCompilerArgument>-verbose</testCompilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>