rmock-ext-gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.agical.rmock</groupId>
<artifactId>rmock-ext-gui</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>rmock-ext-gui</artifactId>
<name>TDDoc GUI testing extension</name>
<version>2.0.0</version>
<url>./documentation/index.html</url>
<build>
<plugins>
<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/RootSuite.class</include>
</includes>
<childDelegation>true</childDelegation>
</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>
<dependency>
<groupId>abbot</groupId>
<artifactId>abbot</artifactId>
<version>0.13.0</version>
</dependency>
</dependencies>
<reporting />
<distributionManagement>
<status>deployed</status>
</distributionManagement>
</project>