4dbdeb4916
unit testing
92 lines
2.6 KiB
XML
92 lines
2.6 KiB
XML
<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>
|
|
<groupId>org.redhat.trie</groupId>
|
|
<artifactId>trie</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk16</artifactId>
|
|
<version>1.44</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<tags>
|
|
<tag>
|
|
<name>methodundertest</name>
|
|
<placement>m</placement>
|
|
<head>Method Under Test:</head>
|
|
</tag>
|
|
<tag>
|
|
<name>servicesused</name>
|
|
<placement>m</placement>
|
|
<head>Services Used:</head>
|
|
</tag>
|
|
<tag>
|
|
<name>testdescription</name>
|
|
<placement>m</placement>
|
|
<head>Description of Test:</head>
|
|
</tag>
|
|
<tag>
|
|
<name>datadependencies</name>
|
|
<placement>m</placement>
|
|
<head>Data Dependencies:</head>
|
|
</tag>
|
|
<tag>
|
|
<name>inputs</name>
|
|
<placement>m</placement>
|
|
<head>Inputs:</head>
|
|
</tag>
|
|
<tag>
|
|
<name>externalconsumers</name>
|
|
<placement>m</placement>
|
|
<head>External Consumers:</head>
|
|
</tag>
|
|
<tag>
|
|
<name>expectedresults</name>
|
|
<placement>m</placement>
|
|
<head>Expected Results:</head>
|
|
</tag>
|
|
</tags>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.hashbangbash.trie.App</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|