rome/pom.xml

267 lines
8.9 KiB
XML
Raw Normal View History

2011-04-01 06:48:20 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2013-10-07 21:35:37 +02: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/maven-v4_0_0.xsd">
2011-04-01 06:48:20 +02:00
<modelVersion>4.0.0</modelVersion>
2013-10-07 21:35:37 +02:00
2013-10-11 17:56:11 +02:00
<groupId>com.rometools</groupId>
2013-09-27 00:23:12 +02:00
<artifactId>rome-propono</artifactId>
<version>2.0.0-SNAPSHOT</version>
2013-10-07 21:35:37 +02:00
<name>rome-propono</name>
2011-04-01 06:48:20 +02:00
<description>The ROME Propono subproject is a Java class library that
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
and the MetaWeblog API.
</description>
2013-10-07 21:35:37 +02:00
2013-09-27 00:38:05 +02:00
<url>http://rometools.github.io/rome-propono/</url>
2013-10-07 21:35:37 +02:00
2013-09-27 00:38:05 +02:00
<organization>
<name>ROME Project</name>
<url>https://github.com/rometools/</url>
</organization>
2013-10-07 21:35:37 +02:00
2011-04-01 06:48:20 +02:00
<issueManagement>
2013-09-27 00:38:05 +02:00
<url>https://github.com/rometools/rome-propono/issues</url>
2011-04-01 06:48:20 +02:00
</issueManagement>
2013-10-07 21:35:37 +02:00
2013-09-27 00:38:05 +02:00
<scm>
<connection>scm:git:git@github.com:rometools/rome-propono.git</connection>
<developerConnection>scm:git:git@github.com:rometools/rome-propono.git</developerConnection>
<url>https://github.com/rometools/rome-propono/</url>
</scm>
2013-10-07 21:35:37 +02:00
2011-04-01 06:48:20 +02:00
<inceptionYear>2007</inceptionYear>
2013-10-07 21:35:37 +02:00
2011-04-01 06:48:20 +02:00
<developers>
<developer>
<name>Dave Johnson</name>
<url>http://rollerweblogger.org/roller</url>
<timezone>-5</timezone>
</developer>
<developer>
<name>Robert Cooper</name>
2013-10-07 21:35:37 +02:00
<email>kebernet@gmail.com</email>
2011-04-01 06:48:20 +02:00
<url>http://www.screaming-penguin.com</url>
<timezone>-4</timezone>
</developer>
</developers>
2013-10-07 21:35:37 +02:00
2011-04-01 06:48:20 +02:00
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
2013-10-07 21:35:37 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<distributionManagement>
2011-04-01 06:48:20 +02:00
<repository>
2013-10-07 21:35:37 +02:00
<id>sonatype-nexus-staging</id>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
2011-04-01 06:48:20 +02:00
</repository>
2013-10-07 21:35:37 +02:00
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
2011-04-01 06:48:20 +02:00
2013-10-11 23:51:47 +02:00
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
2011-04-01 06:48:20 +02:00
<build>
<plugins>
2013-11-10 19:20:06 +01:00
2011-04-01 06:48:20 +02:00
<plugin>
2013-10-07 21:35:37 +02:00
<groupId>org.apache.maven.plugins</groupId>
2011-04-01 06:48:20 +02:00
<artifactId>maven-compiler-plugin</artifactId>
2013-10-07 21:35:37 +02:00
<version>3.1</version>
2011-04-01 06:48:20 +02:00
<configuration>
2013-10-07 21:35:37 +02:00
<source>1.6</source>
<target>1.6</target>
2011-04-01 06:48:20 +02:00
</configuration>
</plugin>
2013-11-10 19:20:06 +01:00
2011-04-01 06:48:20 +02:00
<plugin>
2013-10-07 21:35:37 +02:00
<groupId>org.apache.maven.plugins</groupId>
2013-10-11 23:51:47 +02:00
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
2011-04-01 06:48:20 +02:00
</plugin>
2013-11-10 19:20:06 +01:00
2011-04-01 06:48:20 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
2013-10-07 21:35:37 +02:00
<version>2.2.1</version>
2011-04-01 06:48:20 +02:00
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2013-11-10 19:20:06 +01:00
2011-04-01 06:48:20 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2013-10-07 21:35:37 +02:00
<version>2.9.1</version>
2013-10-12 22:35:26 +02:00
<configuration>
<excludePackageNames>com.sun.syndication.propono.atom.server.impl</excludePackageNames>
</configuration>
2011-04-01 06:48:20 +02:00
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2013-11-10 19:20:06 +01:00
2013-10-07 21:35:37 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
</plugin>
2013-11-10 19:20:06 +01:00
2013-10-07 21:35:37 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<version>1.0-beta-2</version>
<configuration>
<scmBranch>gh-pages</scmBranch>
<pubScmUrl>scm:git:git@github.com:rometools/rome-propono.git</pubScmUrl>
<content>${project.build.directory}/site</content>
</configuration>
</plugin>
2013-11-10 19:20:06 +01:00
2011-04-01 06:48:20 +02:00
</plugins>
</build>
2013-10-07 21:35:37 +02:00
<reporting>
<plugins>
2013-11-10 19:20:06 +01:00
2013-10-07 21:35:37 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</version>
</plugin>
2013-11-10 19:20:06 +01:00
2013-10-07 21:35:37 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
<report>test-javadoc</report>
</reports>
</reportSet>
<reportSet>
<id>aggregate</id>
<inherited>false</inherited>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
2013-11-10 19:20:06 +01:00
2013-10-07 21:35:37 +02:00
</plugins>
</reporting>
2011-04-01 06:48:20 +02:00
2013-10-07 21:35:37 +02:00
<dependencies>
2011-04-01 06:48:20 +02:00
<dependency>
2013-10-11 23:51:47 +02:00
<groupId>com.rometools</groupId>
2011-04-01 06:48:20 +02:00
<artifactId>rome</artifactId>
<version>2.0.0-SNAPSHOT</version>
2011-04-01 06:48:20 +02:00
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>ws-commons-util</groupId>
<artifactId>ws-commons-util</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>xmlrpc</groupId>
<artifactId>xmlrpc-common</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>net.oauth.core</groupId>
<artifactId>oauth</artifactId>
2013-10-07 21:35:37 +02:00
<version>20100527</version>
2011-04-01 06:48:20 +02:00
</dependency>
<dependency>
<groupId>net.oauth.core</groupId>
<artifactId>oauth-provider</artifactId>
2013-10-07 21:35:37 +02:00
<version>20100527</version>
2013-10-11 23:51:47 +02:00
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
2011-04-01 06:48:20 +02:00
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2013-10-07 21:35:37 +02:00
<version>4.11</version>
2011-04-01 06:48:20 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
2013-10-07 21:35:37 +02:00
<version>4.2.10</version>
2011-04-01 06:48:20 +02:00
<scope>test</scope>
</dependency>
</dependencies>
</project>