<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>org.ferris</groupId>
  <artifactId>ferris-constraint</artifactId>
  <name>Ferris Constraint</name>
  <version>0.0.1</version>
  <description>
  	The purpose of this project is to provide a simple set of classes which can
	be used to check an object against common constraints. For example, an object 
	is required to be not null.
  </description>
  <inceptionYear>http://ferris.sourceforge.net/constraint</inceptionYear>
  <parent>
  	<artifactId>ferris-parent-pom</artifactId>
  	<groupId>org.ferris</groupId>
  	<version>0.0.5</version>
  </parent>
  <build>
    <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
            </plugin>
        </plugins>
  </build>  
  <dependencies>
  	<dependency>
  		<groupId>junit</groupId>
  		<artifactId>junit</artifactId>
  		<version>4.5</version>
  		<scope>test</scope>
  	</dependency>
  	<dependency>
  		<groupId>log4j</groupId>
  		<artifactId>log4j</artifactId>
  		<version>1.2.13</version>
  	</dependency>
  </dependencies>
</project>