bfaf3a1ea7
Cleaned up POM
178 lines
4.8 KiB
XML
178 lines
4.8 KiB
XML
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>9</version>
|
|
</parent>
|
|
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-propono</artifactId>
|
|
<version>1.5.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>rome-propono</name>
|
|
|
|
<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>
|
|
|
|
<url>http://rometools.github.io/rome-propono/</url>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
|
<version>1.0</version>
|
|
<configuration>
|
|
<scmBranch>gh-pages</scmBranch>
|
|
<pubScmUrl>${project.scm.developerConnection}</pubScmUrl>
|
|
<content>${project.build.directory}/site</content>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.7</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome</artifactId>
|
|
<version>1.5.0-SNAPSHOT</version>
|
|
</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>
|
|
<version>20100527</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.oauth.core</groupId>
|
|
<artifactId>oauth-provider</artifactId>
|
|
<version>20100527</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty</artifactId>
|
|
<version>4.2.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|