2009-01-28 20:48:40 -05:00
|
|
|
<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>
|
2009-02-03 17:40:04 -05:00
|
|
|
<groupId>com.google.code</groupId>
|
2009-01-28 20:48:40 -05:00
|
|
|
<artifactId>sitemapgen4j</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2009-02-03 16:54:19 -05:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2009-01-28 20:48:40 -05:00
|
|
|
<name>SitemapGen4J</name>
|
2009-02-03 17:40:04 -05:00
|
|
|
<url>http://code.google.com/p/sitemapgen4j/</url>
|
2009-02-03 18:17:20 -05:00
|
|
|
<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>
|
2009-01-28 20:48:40 -05:00
|
|
|
<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>
|
2009-02-03 17:53:00 -05:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>sitemapgen4j-releases</id>
|
|
|
|
<url>file://${basedir}/../site/repo</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2009-01-28 20:48:40 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|