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>
|
2013-09-18 19:55:26 -04:00
|
|
|
<groupId>com.github.dfabulich</groupId>
|
2009-01-28 20:48:40 -05:00
|
|
|
<artifactId>sitemapgen4j</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2018-07-17 06:19:13 -04:00
|
|
|
<version>1.1.1</version>
|
2009-01-28 20:48:40 -05:00
|
|
|
<name>SitemapGen4J</name>
|
2013-09-18 19:55:26 -04:00
|
|
|
<url>https://github.com/dfabulich/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>
|
2013-09-18 19:55:26 -04:00
|
|
|
<connection>scm:git:git://github.com:dfabulich/sitemapgen4j.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:dfabulich/sitemapgen4j.git</developerConnection>
|
|
|
|
<url>https://github.com/dfabulich/sitemapgen4j/</url>
|
2009-02-03 18:17:20 -05:00
|
|
|
</scm>
|
2014-12-12 15:13:18 -05:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2013-09-18 19:55:26 -04:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>dfabulich</id>
|
|
|
|
<name>Dan Fabulich</name>
|
|
|
|
<email>dan@fabulich.com</email>
|
|
|
|
<organization>Redfin</organization>
|
|
|
|
<organizationUrl>http://www.redfin.com/</organizationUrl>
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2014-12-12 18:55:07 -05:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2009-01-28 20:48:40 -05:00
|
|
|
<build>
|
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2014-12-12 15:13:18 -05:00
|
|
|
<version>3.1</version>
|
2009-01-28 20:48:40 -05:00
|
|
|
<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>
|
2014-12-12 18:55:07 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>1.6.3</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
2014-12-12 18:57:58 -05:00
|
|
|
<autoReleaseAfterClose>false</autoReleaseAfterClose>
|
2014-12-12 18:55:07 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-01-28 20:48:40 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|