346 lines
13 KiB
XML
346 lines
13 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-parent</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<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-osgi-test</module>
|
|
<module>rome-propono</module>
|
|
<module>rome-utils</module>
|
|
</modules>
|
|
|
|
<name>rome-parent</name>
|
|
|
|
<description>Parent for all ROME projects</description>
|
|
|
|
<url>http://rometools.com</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:ssh://github.com/rometools/rome.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/rometools/rome.git</developerConnection>
|
|
<url>https://github.com/rometools/rome</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Patrick Gotthard</name>
|
|
<roles>
|
|
<role>Project lead</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>ossrh</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>ossrh</id>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<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.5.1</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>2.10</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.6</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
<configuration>
|
|
<deployAtEnd>true</deployAtEnd>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
|
<version>1.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>bundle</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>bundle</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>2.19.1</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>integration-test</goal>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5.3</version>
|
|
<configuration>
|
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
|
<useReleaseProfile>false</useReleaseProfile>
|
|
<releaseProfiles>release</releaseProfiles>
|
|
<goals>deploy</goals>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<version>1.6.6</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<serverId>ossrh</serverId>
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
<autoReleaseAfterClose>false</autoReleaseAfterClose>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.3</version>
|
|
<configuration>
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>1.6</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- ROME -->
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-certiorem</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-certiorem-webapp</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-fetcher</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-modules</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-opml</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-propono</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rometools</groupId>
|
|
<artifactId>rome-utils</artifactId>
|
|
<version>1.7.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- JDOM -->
|
|
<dependency>
|
|
<groupId>org.jdom</groupId>
|
|
<artifactId>jdom2</artifactId>
|
|
<version>2.0.6</version>
|
|
</dependency>
|
|
<!-- Logging -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.16</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
<!-- JUnit -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
</dependency>
|
|
<!-- XMLUnit -->
|
|
<dependency>
|
|
<groupId>xmlunit</groupId>
|
|
<artifactId>xmlunit</artifactId>
|
|
<version>1.6</version>
|
|
</dependency>
|
|
<!-- Hamcrest -->
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-library</artifactId>
|
|
<version>1.3</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>
|
|
<version>1.0.2</version>
|
|
</dependency>
|
|
<!-- Guice -->
|
|
<dependency>
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
<artifactId>guice-servlet</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<!-- Apache Commons -->
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>1.9.2</version>
|
|
</dependency>
|
|
<!-- Jetty -->
|
|
<dependency>
|
|
<groupId>jetty</groupId>
|
|
<artifactId>jetty</artifactId>
|
|
<version>4.2.12</version>
|
|
</dependency>
|
|
<!-- XML-RPC -->
|
|
<dependency>
|
|
<groupId>org.apache.xmlrpc</groupId>
|
|
<artifactId>xmlrpc-client</artifactId>
|
|
<version>3.1.3</version>
|
|
</dependency>
|
|
<!-- OAuth -->
|
|
<dependency>
|
|
<groupId>net.oauth.core</groupId>
|
|
<artifactId>oauth</artifactId>
|
|
<version>20100527</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|