<?xml version="1.0"?>
<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.concord</groupId>
  <artifactId>maven-dep-test</artifactId>
  <name>Maven Dep Test</name>
  <version>1.0</version>
  <inceptionYear>2006</inceptionYear>
  <organization>
    <name>Concord Consortium</name>
    <url>http://www.concord.org/</url>
  </organization>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <!-- Learner Runtime has to work on JRE 1.4 -->
        <configuration>
          <source>1.4</source>
          <target>1.4</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
      <dependency>
      <groupId>org.codehaus.xfire</groupId>
      <artifactId>xfire-java5</artifactId>
      <version>1.1</version>
    </dependency>
  </dependencies>
</project>

