rome/pom.xml

123 lines
3.5 KiB
XML
Raw Normal View History

2011-04-01 06:48:20 +02:00
<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2013-10-07 21:35:37 +02:00
2014-04-12 11:09:44 +02:00
<modelVersion>4.0.0</modelVersion>
2013-10-07 21:35:37 +02:00
2014-04-12 11:09:44 +02:00
<parent>
2014-04-12 13:37:59 +02:00
<groupId>com.rometools</groupId>
<artifactId>rome-parent</artifactId>
2014-06-04 22:21:24 +02:00
<version>1.6.0-SNAPSHOT</version>
2014-04-12 11:09:44 +02:00
</parent>
2013-10-07 21:35:37 +02:00
2014-04-12 11:09:44 +02:00
<artifactId>rome-propono</artifactId>
<version>1.6.0-SNAPSHOT</version>
2014-04-12 11:09:44 +02:00
<packaging>jar</packaging>
2013-10-07 21:35:37 +02:00
2014-04-12 11:09:44 +02:00
<name>rome-propono</name>
<description>The ROME Propono subproject is a Java class library that
2011-04-01 06:48:20 +02:00
supports publishing protocols, specifically the Atom Publishing Protocol
and the legacy MetaWeblog API. Propono includes an Atom client library,
Atom server framework and a Blog client that supports both Atom protocol
2014-04-12 11:09:44 +02:00
and the MetaWeblog API.
2011-04-01 06:48:20 +02:00
</description>
2013-10-07 21:35:37 +02:00
2014-04-12 11:09:44 +02:00
<url>http://rometools.github.io/rome-propono/</url>
<scm>
2014-06-04 00:09:33 +02:00
<connection>scm:git:ssh://github.com/rometools/rome-propono.git</connection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-propono.git</developerConnection>
<url>https://github.com/rometools/rome-propono</url>
2014-04-12 11:09:44 +02:00
</scm>
<developers>
<developer>
<name>Dave Johnson</name>
<url>http://rollerweblogger.org/roller</url>
<timezone>-5</timezone>
</developer>
<developer>
<name>Robert Cooper</name>
<email>kebernet@gmail.com</email>
<url>http://www.screaming-penguin.com</url>
<timezone>-4</timezone>
</developer>
</developers>
2014-04-28 17:48:26 +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>
2014-04-12 11:09:44 +02: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>
<dependencies>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome</artifactId>
2014-06-04 22:21:24 +02:00
<version>1.6.0-SNAPSHOT</version>
2014-04-12 11:09:44 +02:00
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
</dependency>
<dependency>
2014-04-12 14:40:31 +02:00
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
2014-04-12 11:09:44 +02:00
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
2014-06-16 06:31:12 +02:00
<groupId>org.apache.xmlrpc</groupId>
2014-04-12 11:09:44 +02:00
<artifactId>xmlrpc-client</artifactId>
</dependency>
<dependency>
<groupId>net.oauth.core</groupId>
<artifactId>oauth</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<scope>provided</scope>
</dependency>
2014-04-14 19:21:54 +02:00
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
2014-04-12 11:09:44 +02:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
2014-04-12 13:37:59 +02:00
<groupId>jetty</groupId>
2014-04-12 11:09:44 +02:00
<artifactId>jetty</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
2011-04-01 06:48:20 +02:00
</project>