critter-tests-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.antwerkz.critter</groupId>
<artifactId>critter-tests-java</artifactId>
<version>3.0.4</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>
<groupId>com.antwerkz.critter</groupId>
<artifactId>critter-tests</artifactId>
<version>3.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>critter-tests-java</artifactId>
<name>critter-tests-java</name>
<build>
<plugins>
<plugin>
<groupId>com.antwerkz.critter</groupId>
<artifactId>critter-maven</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>critter</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<force>true</force>
<outputType>java</outputType>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.antwerkz.critter</groupId>
<artifactId>critter-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.morphia.morphia</groupId>
<artifactId>core</artifactId>
</dependency>
<!-- tests -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>