[maven-release-plugin] prepare release rome-utils-1.5.0

This commit is contained in:
Patrick Gotthard 2014-06-03 23:50:51 +02:00
parent ae110720e6
commit c4d0b9a695

135
pom.xml
View file

@ -1,69 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<parent> <groupId>com.rometools</groupId>
<groupId>com.rometools</groupId> <artifactId>rome-parent</artifactId>
<artifactId>rome-parent</artifactId> <version>1.5.0</version>
<version>1.5.0</version> </parent>
</parent>
<artifactId>rome-utils</artifactId>
<artifactId>rome-utils</artifactId> <packaging>jar</packaging>
<packaging>jar</packaging> <version>1.5.0</version>
<version>1.5.0-SNAPSHOT</version>
<name>rome-utils</name>
<name>rome-utils</name>
<description>Utility classes for ROME projects</description>
<description>Utility classes for ROME projects</description>
<url>http://rometools.github.io/rome-utils/</url>
<url>http://rometools.github.io/rome-utils/</url>
<scm>
<scm> <connection>scm:git:ssh://github.com/rometools/rome-utils.git</connection>
<connection>scm:git:ssh://github.com/rometools/rome-utils.git</connection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-utils.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-utils.git</developerConnection> <url>https://github.com/rometools/rome-utils</url>
<url>https://github.com/rometools/rome-utils</url> </scm>
</scm>
<developers>
<developers> <developer>
<developer> <name>Patrick Gotthard</name>
<name>Patrick Gotthard</name> <url>http://www.patrick-gotthard.de</url>
<url>http://www.patrick-gotthard.de</url> <timezone>+1</timezone>
<timezone>+1</timezone> </developer>
</developer> </developers>
</developers>
<repositories>
<repositories> <repository>
<repository> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </repository>
</repository> </repositories>
</repositories>
<dependencies>
<dependencies> <dependency>
<dependency> <groupId>junit</groupId>
<groupId>junit</groupId> <artifactId>junit</artifactId>
<artifactId>junit</artifactId> <scope>test</scope>
<scope>test</scope> <exclusions>
<exclusions> <exclusion>
<exclusion> <artifactId>hamcrest-core</artifactId>
<artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId>
<groupId>org.hamcrest</groupId> </exclusion>
</exclusion> </exclusions>
</exclusions> </dependency>
</dependency> <dependency>
<dependency> <groupId>org.hamcrest</groupId>
<groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId>
<artifactId>hamcrest-all</artifactId> <scope>test</scope>
<scope>test</scope> </dependency>
</dependency> </dependencies>
</dependencies>
</project> </project>