<?xml version="1.0" encoding="ISO-8859-1"?>
<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>net.opengis</groupId>
 <artifactId>wfs</artifactId>
 <version>1.1.0</version>
 <packaging>jar</packaging>
 <name>Web Feature Service Model</name>
 <dependencies>
  <dependency>
   <groupId>net.opengis</groupId>
   <artifactId>ows</artifactId>
   <version>1.0.0</version>
  </dependency>
  <dependency>
   <groupId>org.opengis</groupId>
   <artifactId>geoapi</artifactId>
   <version>2.2-SNAPSHOT</version>
  </dependency>
  <dependency>
   <groupId>org.geotools</groupId>
   <artifactId>gt2-api</artifactId>
   <version>2.5-SNAPSHOT</version>
  </dependency>
 </dependencies>
 <build>
  <sourceDirectory>src</sourceDirectory>
  <plugins>
   <plugin>
    <artifactId>maven-eclipse-plugin</artifactId>
    <configuration>
     <additionalBuildcommands>
      <buildcommand>org.eclipse.pde.ManifestBuilder</buildcommand>
      <buildcommand>org.eclipse.pde.SchemaBuilder</buildcommand>
     </additionalBuildcommands>
     <additionalProjectnatures>
      <projectnature>org.eclipse.pde.PluginNature</projectnature>
     </additionalProjectnatures>
    </configuration>
   </plugin>
   <plugin>
        <inherited>true</inherited>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <configuration>
          <attach>true</attach>
        </configuration>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

  </plugins>
   <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId>
        <artifactId>wagon-webdav</artifactId>
        <version>1.0-beta-2</version>
      </extension>
    </extensions>
 </build>
 <distributionManagement>
    <repository>
      <uniqueVersion>false</uniqueVersion>
      <id>refractions</id>
      <name>Refractions Research - Maven 2 repo</name>
      <url>dav:http://lists.refractions.net/m2</url>
    </repository>
  </distributionManagement>
  <repositories>
    <repository>
      <id>refractions</id>
      <name>Refractions Research Maven 2 Repository</name>
      <url>http://lists.refractions.net/m2</url>
    </repository>
  </repositories>
</project>
