Reversed pom to original.

This commit is contained in:
Sergio Vico 2017-03-30 12:20:22 +02:00
parent 0eccebb6c2
commit c1dba547dc
1 changed files with 50 additions and 5 deletions

55
pom.xml
View File

@ -1,12 +1,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.github.sergiovm</groupId> <groupId>com.github.dfabulich</groupId>
<artifactId>sitemapgen4j</artifactId> <artifactId>sitemapgen4j</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.7-SNAPSHOT</version> <version>1.0.7-SNAPSHOT</version>
<name>SitemapGen4J</name> <name>SitemapGen4J</name>
<url>https://github.com/sergiovm/sitemapgen4j</url> <url>https://github.com/dfabulich/sitemapgen4j/</url>
<description>SitemapGen4j is an XML sitemap generator written in Java.</description> <description>SitemapGen4j is an XML sitemap generator written in Java.</description>
<licenses> <licenses>
<license> <license>
@ -16,13 +16,33 @@
</license> </license>
</licenses> </licenses>
<scm> <scm>
<connection>scm:git:git://github.com:sergiovm/sitemapgen4j.git</connection> <connection>scm:git:git://github.com:dfabulich/sitemapgen4j.git</connection>
<developerConnection>scm:git:git@github.com:sergiovm/sitemapgen4j.git</developerConnection> <developerConnection>scm:git:git@github.com:dfabulich/sitemapgen4j.git</developerConnection>
<url>https://github.com/sergiovm/sitemapgen4j/</url> <url>https://github.com/dfabulich/sitemapgen4j/</url>
</scm> </scm>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<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>
<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>
<build> <build>
<defaultGoal>install</defaultGoal> <defaultGoal>install</defaultGoal>
<plugins> <plugins>
@ -68,6 +88,31 @@
</execution> </execution>
</executions> </executions>
</plugin> </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>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>