<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-xml</artifactId>
  <name>Ferris XML</name>
  <version>0.0.1</version>
  <description>This project contains simple tools for working with XML.</description>
  <url>http://ferris.sourceforge.net/xml</url>
  <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.9</version>
  	</dependency>
  </dependencies>
</project>