Preparing release 1.5.0

Cleaned up POM
This commit is contained in:
Patrick Gotthard 2014-04-12 11:07:10 +02:00
parent 998ed44a07
commit 9f65c6bc92

310
pom.xml
View file

@ -1,207 +1,137 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.rometools</groupId> <parent>
<artifactId>rome-fetcher</artifactId> <groupId>org.sonatype.oss</groupId>
<version>2.0.0-SNAPSHOT</version> <artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<name>rome-fetcher</name> <groupId>com.rometools</groupId>
<artifactId>rome-fetcher</artifactId>
<version>1.5.0-SNAPSHOT</version>
<packaging>jar</packaging>
<description>A well behaved feed fetcher API for ROME</description> <name>rome-fetcher</name>
<inceptionYear>2004</inceptionYear> <description>A well behaved feed fetcher API for ROME</description>
<url>http://rometools.github.io/rome-fetcher/</url> <url>http://rometools.github.io/rome-fetcher/</url>
<organization> <licenses>
<name>ROME Project</name> <license>
<url>https://github.com/rometools/</url> <name>The Apache Software License, Version 2.0</name>
</organization> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement> <scm>
<url>https://github.com/rometools/rome-fetcher/issues</url> <connection>scm:git:git@github.com:rometools/rome-fetcher.git</connection>
</issueManagement> <developerConnection>scm:git:git@github.com:rometools/rome-fetcher.git</developerConnection>
<url>https://github.com/rometools/rome-fetcher/</url>
</scm>
<scm> <developers>
<connection>scm:git:git@github.com:rometools/rome-fetcher.git</connection> <developer>
<developerConnection>scm:git:git@github.com:rometools/rome-fetcher.git</developerConnection> <name>Nick Lothian</name>
<url>https://github.com/rometools/rome-fetcher/</url> <url>http://nicklothian.com</url>
</scm> </developer>
<developer>
<name>Robert Cooper</name>
<email>kebernet@gmail.comM</email>
</developer>
</developers>
<licenses> <properties>
<license> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<name>Apache 2</name> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </properties>
</license>
</licenses>
<developers> <build>
<developer> <plugins>
<id>kebernet</id> <plugin>
<name>Robert Cooper</name> <groupId>org.apache.maven.plugins</groupId>
<email>kebernet@gmail.comM</email> <artifactId>maven-compiler-plugin</artifactId>
</developer> <version>3.1</version>
<developer> <configuration>
<name>Nick Lothian</name> <source>1.6</source>
<url>http://nicklothian.com</url> <target>1.6</target>
</developer> </configuration>
</developers> </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>
<properties> <reporting>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <plugins>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <plugin>
</properties> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</reporting>
<distributionManagement> <dependencies>
<repository> <dependency>
<id>central.staging</id> <groupId>com.rometools</groupId>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> <artifactId>rome</artifactId>
</repository> <version>1.5.0-SNAPSHOT</version>
<snapshotRepository> </dependency>
<id>sonatype.snapshots</id> <dependency>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <groupId>xerces</groupId>
</snapshotRepository> <artifactId>xercesImpl</artifactId>
</distributionManagement> <version>2.11.0</version>
</dependency>
<repositories> <dependency>
<repository> <groupId>commons-httpclient</groupId>
<id>sonatype.snapshots</id> <artifactId>commons-httpclient</artifactId>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <version>3.1</version>
</repository> <optional />
</repositories> </dependency>
<dependency>
<build> <groupId>commons-logging</groupId>
<plugins> <artifactId>commons-logging</artifactId>
<plugin> <version>1.1.3</version>
<groupId>org.apache.maven.plugins</groupId> <optional />
<artifactId>maven-compiler-plugin</artifactId> </dependency>
<version>3.1</version> <dependency>
<configuration> <groupId>commons-logging</groupId>
<source>1.6</source> <artifactId>commons-logging-api</artifactId>
<target>1.6</target> <version>1.1</version>
</configuration> <optional />
</plugin> </dependency>
<plugin> <dependency>
<groupId>org.apache.maven.plugins</groupId> <groupId>javax.servlet</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>servlet-api</artifactId>
<version>2.2.1</version> <version>2.5</version>
<executions> <scope>test</scope>
<execution> </dependency>
<goals> <dependency>
<goal>jar</goal> <groupId>jetty</groupId>
</goals> <artifactId>jetty</artifactId>
</execution> <version>4.2.12</version>
</executions> <scope>test</scope>
</plugin> </dependency>
<plugin> <dependency>
<groupId>org.apache.maven.plugins</groupId> <groupId>junit</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>junit</artifactId>
<version>2.9.1</version> <version>4.11</version>
<executions> <scope>test</scope>
<execution> </dependency>
<goals> </dependencies>
<goal>jar</goal>
</goals>
</execution>
</executions>
</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-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>
</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>
</reports>
</reportSet>
<reportSet>
<id>aggregate</id>
<inherited>false</inherited>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
<optional />
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
<optional />
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
<version>1.1</version>
<optional />
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<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>
<scope>test</scope>
</dependency>
</dependencies>
</project> </project>