2014-04-12 13:35:53 +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">
|
|
|
|
|
|
|
|
<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-parent</artifactId>
|
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2014-04-12 14:22:27 +02:00
|
|
|
<!-- Just for testing the build locally -->
|
2014-04-12 14:32:49 +02:00
|
|
|
<modules>
|
|
|
|
<module>../rome</module>
|
|
|
|
<module>../rome-certiorem</module>
|
|
|
|
<module>../rome-certiorem-webapp</module>
|
|
|
|
<module>../rome-fetcher</module>
|
|
|
|
<module>../rome-modules</module>
|
|
|
|
<module>../rome-opml</module>
|
|
|
|
<module>../rome-propono</module>
|
|
|
|
</modules>
|
2014-04-12 14:22:27 +02:00
|
|
|
|
2014-04-12 13:35:53 +02:00
|
|
|
<name>rome-parent</name>
|
|
|
|
|
|
|
|
<description>Parent for all ROME projects</description>
|
|
|
|
|
|
|
|
<url>http://rometools.github.io/rome-parent/</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-parent.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:rometools/rome-parent.git</developerConnection>
|
|
|
|
<url>https://github.com/rometools/rome-parent/</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Patrick Gotthard</name>
|
|
|
|
<email>patrick@patrick-gotthard.de</email>
|
|
|
|
<url>http://www.patrick-gotthard.de</url>
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<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-site-plugin</artifactId>
|
|
|
|
<version>3.3</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- ROME -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
<artifactId>rome-fetcher</artifactId>
|
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
<artifactId>rome-certiorem</artifactId>
|
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- JDOM -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jdom</groupId>
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- SLF4J -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2014-04-12 14:32:49 +02:00
|
|
|
<version>1.7.7</version>
|
2014-04-12 13:35:53 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2014-04-12 14:32:49 +02:00
|
|
|
<version>1.7.7</version>
|
2014-04-12 13:35:53 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- JUnit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- JavaX -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>persistence-api</artifactId>
|
2014-04-12 14:32:49 +02:00
|
|
|
<version>1.0.2</version>
|
2014-04-12 13:35:53 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- Guice -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
<artifactId>guice-servlet</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Xerces -->
|
|
|
|
<!-- Apache Commons -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
2014-04-12 14:32:49 +02:00
|
|
|
<version>2.6</version>
|
2014-04-12 13:35:53 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
2014-04-12 14:32:49 +02:00
|
|
|
<version>1.9.1</version>
|
2014-04-12 13:35:53 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- Jetty -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
<version>4.2.12</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- XML-RPC -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlrpc</groupId>
|
|
|
|
<artifactId>xmlrpc-client</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- OAuth -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.oauth.core</groupId>
|
|
|
|
<artifactId>oauth</artifactId>
|
|
|
|
<version>20100527</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
</project>
|