<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>com.google.code</groupId>
  <artifactId>sitemapgen4j</artifactId>
  <packaging>jar</packaging>
  <version>1.0.1</version>
  <name>SitemapGen4J</name>
  <url>http://code.google.com/p/sitemapgen4j/</url>
  <description>SitemapGen4j is an XML sitemap generator written in Java.</description>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:http://sitemapgen4j.googlecode.com/svn/trunk/</connection>
    <developerConnection>scm:svn:https://sitemapgen4j.googlecode.com/svn/trunk/</developerConnection>
    <url>http://code.google.com/p/sitemapgen4j/source/browse/</url>
  </scm>
  <build>
    <defaultGoal>install</defaultGoal>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-eclipse-plugin</artifactId>
        <version>2.5.1</version>
      </plugin>
    </plugins>
  </build>
  <distributionManagement>
    <repository>
        <id>sitemapgen4j-releases</id>
        <url>file://${basedir}/../site/repo</url>
    </repository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
