215 lines
7.8 KiB
XML
215 lines
7.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>
|
|
|
|
<groupId>org.rometools</groupId>
|
|
<artifactId>rome</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
<name>ROME, RSS and atOM utilitiEs for Java</name>
|
|
|
|
<description>All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it
|
|
easy to work in Java with most syndication formats. Today it accepts all flavors of RSS
|
|
(0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes
|
|
a set of parsers and generators for the various flavors of feeds, as well as converters
|
|
to convert from one format to another. The parsers can give you back Java objects that
|
|
are either specific for the format you want to work with, or a generic normalized
|
|
SyndFeed object that lets you work on with the data without bothering about the
|
|
underlying format.
|
|
</description>
|
|
|
|
<url>http://rometools.github.io/rome/</url>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/rometools/rome/issues</url>
|
|
</issueManagement>
|
|
|
|
<inceptionYear>2004</inceptionYear>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Alejandro Abdelnur</name>
|
|
<url>http://blog.sun.com/roller/page/tucu</url>
|
|
<timezone>0</timezone>
|
|
</developer>
|
|
<developer>
|
|
<name>Dave Johnson</name>
|
|
<url>http://rollerweblogger.org/roller</url>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
<developer>
|
|
<name>Elaine Chien</name>
|
|
<timezone>0</timezone>
|
|
</developer>
|
|
<developer>
|
|
<name>Patrick Chanezon</name>
|
|
<url>http://www.chanezon.com/pat/weblog</url>
|
|
<timezone>-9</timezone>
|
|
</developer>
|
|
<developer>
|
|
<name>Patrick Gotthard</name>
|
|
<url>http://www.patrick-gotthard.de</url>
|
|
<timezone>+1</timezone>
|
|
</developer>
|
|
<developer>
|
|
<name>Robert Cooper</name>
|
|
<email>kebernet@gmail.com</email>
|
|
<url>http://www.screaming-penguin.com</url>
|
|
<timezone>-4</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:git@github.com:rometools/rome.git</connection>
|
|
<developerConnection>scm:git:git@github.com:rometools/rome.git</developerConnection>
|
|
<url>https://github.com/rometools/rome</url>
|
|
</scm>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache 2</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<organization>
|
|
<name>ROME Project</name>
|
|
<url>https://github.com/rometools</url>
|
|
</organization>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</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>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<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>
|
|
<compilerArgument>-Xlint</compilerArgument>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<port>9000</port>
|
|
<tempWebappDirectory>${basedir}/target/site/tempdir</tempWebappDirectory>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.doxia</groupId>
|
|
<artifactId>doxia-module-markdown</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.doxia</groupId>
|
|
<artifactId>doxia-module-confluence</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</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.git</pubScmUrl>
|
|
<content>${project.build.directory}/site</content>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<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>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<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>
|
|
<report>test-javadoc</report>
|
|
</reports>
|
|
</reportSet>
|
|
<reportSet>
|
|
<id>aggregate</id>
|
|
<inherited>false</inherited>
|
|
<reports>
|
|
<report>aggregate</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jdom</groupId>
|
|
<artifactId>jdom</artifactId>
|
|
<version>2.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|