rome/rome-utils/pom.xml
Patrick Gotthard e1118a5bb9 POM refactoring
2016-02-20 16:11:41 +01:00

65 lines
No EOL
2 KiB
XML

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.rometools</groupId>
<artifactId>rome-parent</artifactId>
<version>1.6.0-SNAPSHOT</version>
</parent>
<artifactId>rome-utils</artifactId>
<packaging>jar</packaging>
<name>rome-utils</name>
<description>Utility classes for ROME projects</description>
<url>http://rometools.github.io/rome-utils/</url>
<scm>
<connection>scm:git:ssh://github.com/rometools/rome-utils.git</connection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-utils.git</developerConnection>
<url>https://github.com/rometools/rome-utils</url>
</scm>
<developers>
<developer>
<name>Patrick Gotthard</name>
<url>http://www.patrick-gotthard.de</url>
<timezone>+1</timezone>
</developer>
</developers>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>