gaertner-annotation-processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.kadi79.gaertner</groupId>
<artifactId>gaertner-annotation-processor</artifactId>
<version>0.0.2</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> <parent> <groupId>com.github.kadi79.gaertner</groupId> <artifactId>gaertner</artifactId> <version>0.0.2</version> </parent> <artifactId>gaertner-annotation-processor</artifactId> <dependencies> <dependency> <groupId>com.github.kadi79.gaertner</groupId> <artifactId>gaertner-annotations</artifactId> </dependency> <dependency> <groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml</artifactId> <version>1.2017.14</version> </dependency> <!-- test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> <version>2.0.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.4</version> <scope>test</scope> </dependency> <!-- <dependency> --> <!-- <groupId>com.google.testing.compile</groupId> --> <!-- <artifactId>compile-testing</artifactId> --> <!-- <version>0.11</version> --> <!-- <scope>test</scope> --> <!-- </dependency> --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <proc>none</proc> </configuration> <executions> <execution> <id>default-compile</id> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>default-test-compile</id> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>