rome/rome-opml/pom.xml

92 lines
2.8 KiB
XML
Raw Normal View History

2015-02-07 09:49:43 +01: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/xsd/maven-4.0.0.xsd">
2011-03-01 20:15:21 +01:00
2015-02-07 09:49:43 +01:00
<modelVersion>4.0.0</modelVersion>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<parent>
<groupId>com.rometools</groupId>
<artifactId>rome-parent</artifactId>
<version>1.6.0-SNAPSHOT</version>
</parent>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<artifactId>rome-opml</artifactId>
<version>1.6.0-SNAPSHOT</version>
<packaging>jar</packaging>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<name>rome-opml</name>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<description>Support for OPML 1 and OPML 2 in ROME</description>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<url>http://rometools.github.io/rome-opml/</url>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<scm>
<connection>scm:git:ssh://github.com/rometools/rome-opml.git</connection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-opml.git</developerConnection>
<url>https://github.com/rometools/rome-opml</url>
</scm>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<developers>
<developer>
<id>kebernet</id>
<email>kebernet@gmail.com</email>
<name>Robert Cooper</name>
</developer>
</developers>
2014-04-12 11:09:25 +02:00
2014-04-28 17:48:36 +02:00
<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>
2015-02-07 09:49:43 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<configuration>
<scmBranch>gh-pages</scmBranch>
<pubScmUrl>${project.scm.developerConnection}</pubScmUrl>
<content>${project.build.directory}/site</content>
</configuration>
</plugin>
</plugins>
</build>
2014-04-12 11:09:25 +02:00
2015-02-07 09:49:43 +01:00
<dependencies>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome</artifactId>
2014-06-04 22:21:08 +02:00
<version>1.6.0-SNAPSHOT</version>
2015-02-07 09:49:43 +01:00
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
2015-02-07 09:49:43 +01:00
</dependencies>
2013-10-07 22:02:04 +02:00
2011-03-01 20:15:21 +01:00
</project>