vt-dictionary
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>edu.vt.middleware</groupId> <artifactId>vt-dictionary</artifactId> <version>3.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>edu.vt.middleware</groupId> <artifactId>vt-dictionary</artifactId> <packaging>jar</packaging> <version>3.0</version> <name>VT Dictionary Libraries</name> <description>Library for searching and sorting word lists</description> <url>http://code.google.com/p/vt-middleware/wiki/vtdictionary</url> <issueManagement> <system>Google Code</system> <url>http://code.google.com/p/vt-middleware/issues/list</url> </issueManagement> <mailingLists> <mailingList> <name>vt-middleware-users</name> <subscribe>vt-middleware-users+subscribe@googlegroups.com</subscribe> <unsubscribe>vt-middleware-users+unsubscribe@googlegroups.com</unsubscribe> <post>vt-middleware-users@googlegroups.com</post> <archive>http://groups.google.com/group/vt-middleware-users</archive> </mailingList> <mailingList> <name>vt-middleware-dev</name> <subscribe>vt-middleware-dev+subscribe@googlegroups.com</subscribe> <unsubscribe>vt-middleware-dev+unsubscribe@googlegroups.com</unsubscribe> <post>vt-middleware-dev@googlegroups.com</post> <archive>http://groups.google.com/group/vt-middleware-dev</archive> </mailingList> </mailingLists> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> </license> </licenses> <scm> <connection>scm:svn:https://vt-middleware.googlecode.com/svn/vt-dictionary/trunk</connection> <url>http://vt-middleware.googlecode.com/svn/vt-dictionary/trunk</url> </scm> <developers> <developer> <id>dfisher</id> <name>Daniel Fisher</name> <email>dfisher@vt.edu</email> <organization>Virginia Tech</organization> <organizationUrl>http://www.vt.edu</organizationUrl> <roles> <role>developer</role> </roles> </developer> <developer> <id>marvin.addison</id> <name>Marvin Addison</name> <email>serac@vt.edu</email> <organization>Virginia Tech</organization> <organizationUrl>http://www.vt.edu</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <properties> <project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding> <checkstyle.dir>${basedir}/src/main/checkstyle</checkstyle.dir> <testng.dir>${basedir}/src/test/testng</testng.dir> <assembly.dir>${basedir}/src/main/assembly</assembly.dir> </properties> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.14</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-info</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/package-info</outputDirectory> <resources> <resource> <directory>${basedir}</directory> <filtering>true</filtering> <includes> <include>README*</include> </includes> </resource> <resource> <directory>${basedir}</directory> <filtering>false</filtering> <includes> <include>LICENSE*</include> <include>NOTICE*</include> <include>CHANGELOG*</include> <include>pom.xml</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-scripts</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/bin</outputDirectory> <resources> <resource> <directory>bin</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> <debug>true</debug> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <compilerArgument>-Xlint:unchecked</compilerArgument> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.5</version> <configuration> <configLocation>${checkstyle.dir}/checkstyle_checks.xml</configLocation> <headerLocation>${checkstyle.dir}/checkstyle_header</headerLocation> <suppressionsLocation>${checkstyle.dir}/suppressions.xml</suppressionsLocation> <includeTestSourceDirectory>true</includeTestSourceDirectory> <failsOnError>false</failsOnError> <outputFileFormat>plain</outputFileFormat> </configuration> <executions> <execution> <id>checkstyle</id> <phase>compile</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Xms1536m -Xmx1536m</argLine> <suiteXmlFiles> <suiteXmlFile>${testng.dir}/testng.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <bottom><![CDATA[<i>Copyright © 2003-2010 Virginia Tech. All Rights Reserved.</i>]]></bottom> </configuration> <executions> <execution> <id>javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>source</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>jar</id> <phase>package</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>true</appendAssemblyId> <descriptors> <descriptor>${assembly.dir}/vt-middleware.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.9</version> </extension> </extensions> </build> <profiles> <profile> <id>sign-artifacts</id> <activation> <property> <name>sign</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>package</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>