rome/pom.xml

207 lines
6.9 KiB
XML
Raw Normal View History

2011-03-01 20:48:25 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2013-10-07 22:21:31 +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-03-01 20:48:25 +01:00
<modelVersion>4.0.0</modelVersion>
2013-10-07 22:21:31 +02:00
2013-10-11 17:55:48 +02:00
<groupId>com.rometools</groupId>
2011-03-15 00:52:57 +01:00
<artifactId>rome-fetcher</artifactId>
2013-10-11 18:18:59 +02:00
<version>2.0.0-SNAPSHOT</version>
2013-10-07 22:21:31 +02:00
<name>rome-fetcher</name>
2011-03-19 18:13:48 +01:00
<description>A well behaved feed fetcher API for ROME</description>
2013-10-07 22:21:31 +02:00
<inceptionYear>2004</inceptionYear>
2013-09-26 23:12:47 +02:00
<url>http://rometools.github.io/rome-fetcher/</url>
2013-10-07 22:21:31 +02:00
2011-03-01 20:48:25 +01:00
<organization>
<name>ROME Project</name>
2013-09-26 23:12:47 +02:00
<url>https://github.com/rometools/</url>
2011-03-01 20:48:25 +01:00
</organization>
2013-10-07 22:21:31 +02:00
2011-03-15 00:52:57 +01:00
<issueManagement>
2013-09-26 23:12:47 +02:00
<url>https://github.com/rometools/rome-fetcher/issues</url>
2011-03-15 00:52:57 +01:00
</issueManagement>
2013-10-07 22:21:31 +02:00
2011-03-15 00:52:57 +01:00
<scm>
2013-09-26 23:12:47 +02:00
<connection>scm:git:git@github.com:rometools/rome-fetcher.git</connection>
<developerConnection>scm:git:git@github.com:rometools/rome-fetcher.git</developerConnection>
<url>https://github.com/rometools/rome-fetcher/</url>
2011-03-15 00:52:57 +01:00
</scm>
2013-10-07 22:21:31 +02:00
2011-03-01 20:48:25 +01:00
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
2013-10-07 22:21:31 +02:00
2011-03-01 20:48:25 +01:00
<developers>
2011-03-19 18:13:48 +01:00
<developer>
<id>kebernet</id>
<name>Robert Cooper</name>
<email>kebernet@gmail.comM</email>
</developer>
2011-03-01 20:48:25 +01:00
<developer>
<name>Nick Lothian</name>
<url>http://nicklothian.com</url>
</developer>
</developers>
2013-10-07 22:21:31 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2013-10-07 22:21:31 +02:00
</properties>
<distributionManagement>
<repository>
<id>central.staging</id>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sonatype.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
2013-10-07 22:21:31 +02:00
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>sonatype.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
2011-03-01 20:48:25 +01:00
<build>
<plugins>
<plugin>
2013-10-07 22:21:31 +02:00
<groupId>org.apache.maven.plugins</groupId>
2011-03-01 20:48:25 +01:00
<artifactId>maven-compiler-plugin</artifactId>
2013-10-07 22:21:31 +02:00
<version>3.1</version>
2011-03-01 20:48:25 +01:00
<configuration>
2013-10-07 22:21:31 +02:00
<source>1.6</source>
<target>1.6</target>
2011-03-01 20:48:25 +01:00
</configuration>
</plugin>
2013-10-07 22:21:31 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2013-10-12 22:35:09 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
</plugin>
<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-fetcher.git</pubScmUrl>
<content>${project.build.directory}/site</content>
</configuration>
</plugin>
2011-03-01 20:48:25 +01:00
</plugins>
</build>
2013-10-07 22:21:31 +02:00
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
<reportSet>
<id>aggregate</id>
<inherited>false</inherited>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
2011-03-01 20:48:25 +01:00
<dependencies>
<dependency>
<groupId>com.rometools</groupId>
2011-03-01 20:48:25 +01:00
<artifactId>rome</artifactId>
<version>2.0.0-SNAPSHOT</version>
2011-03-01 20:48:25 +01:00
</dependency>
2013-10-07 22:21:31 +02:00
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.11.0</version>
</dependency>
2011-03-01 20:48:25 +01:00
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
<optional />
2011-03-01 20:48:25 +01:00
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
2013-10-07 22:21:31 +02:00
<optional />
2011-03-01 20:48:25 +01:00
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
<version>1.1</version>
2011-03-01 20:59:36 +01:00
<optional />
2011-03-01 20:48:25 +01:00
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
2011-03-01 20:48:25 +01:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>jetty</groupId>
<artifactId>jetty</artifactId>
<version>4.2.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
2011-03-01 20:48:25 +01:00
<scope>test</scope>
</dependency>
</dependencies>
</project>