Preparing release 1.5.0

Cleaned up POM
This commit is contained in:
Patrick Gotthard 2014-04-12 11:08:27 +02:00
parent b49998314c
commit d9b5d9824e

247
pom.xml
View file

@ -1,177 +1,104 @@
<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-modules</artifactId> <groupId>org.sonatype.oss</groupId>
<version>2.0.0-SNAPSHOT</version> <artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<name>rome-modules</name> <groupId>com.rometools</groupId>
<artifactId>rome-modules</artifactId>
<version>1.5.0-SNAPSHOT</version>
<packaging>jar</packaging>
<description>Plugin collection for the ROME RSS and Atom Utilities</description> <name>rome-modules</name>
<url>http://rometools.github.io/rome-modules/</url> <description>Plugin collection for the ROME RSS and Atom Utilities</description>
<organization> <url>http://rometools.github.io/rome-modules/</url>
<name>ROME Project</name>
<url>https://github.com/rometools/</url>
</organization>
<issueManagement> <licenses>
<url>https://github.com/rometools/rome-modules/issues</url> <license>
</issueManagement> <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> <scm>
<connection>scm:git:git@github.com:rometools/rome-modules.git</connection> <connection>scm:git:git@github.com:rometools/rome-modules.git</connection>
<developerConnection>scm:git:git@github.com:rometools/rome-modules.git</developerConnection> <developerConnection>scm:git:git@github.com:rometools/rome-modules.git</developerConnection>
<url>https://github.com/rometools/rome-modules/</url> <url>https://github.com/rometools/rome-modules/</url>
</scm> </scm>
<developers> <developers>
<developer> <developer>
<id>kebernet</id> <id>kebernet</id>
<email>kebernet@gmail.com</email> <email>kebernet@gmail.com</email>
<name>Robert Cooper</name> <name>Robert Cooper</name>
</developer> </developer>
</developers> </developers>
<licenses> <properties>
<license> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<name>The Apache Software License, Version 2.0</name> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </properties>
<distribution>repo</distribution>
</license>
</licenses>
<properties> <build>
<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-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>
<configuration>
<scmBranch>gh-pages</scmBranch>
<pubScmUrl>${project.scm.developerConnection}</pubScmUrl>
<content>${project.build.directory}/site</content>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement> <reporting>
<repository> <plugins>
<id>central.staging</id> <plugin>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> <groupId>org.apache.maven.plugins</groupId>
</repository> <artifactId>maven-project-info-reports-plugin</artifactId>
<snapshotRepository> <version>2.7</version>
<id>sonatype.snapshots</id> </plugin>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> </plugins>
</snapshotRepository> </reporting>
</distributionManagement>
<repositories> <dependencies>
<repository> <dependency>
<id>sonatype.snapshots</id> <groupId>com.rometools</groupId>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <artifactId>rome</artifactId>
</repository> <version>1.5.0-SNAPSHOT</version>
</repositories> </dependency>
<dependency>
<build> <groupId>junit</groupId>
<plugins> <artifactId>junit</artifactId>
<plugin> <version>4.11</version>
<groupId>org.apache.maven.plugins</groupId> <scope>test</scope>
<artifactId>maven-compiler-plugin</artifactId> </dependency>
<version>3.1</version> </dependencies>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<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>
<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-plugin</artifactId>
<version>1.8.1</version>
<configuration>
<goals>install</goals>
</configuration>
</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-modules.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>
<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>com.rometools</groupId>
<artifactId>rome</artifactId>
<version>2.0.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project> </project>