[maven-release-plugin] prepare release rome-certiorem-1.5.0

This commit is contained in:
Patrick Gotthard 2014-06-04 00:53:18 +02:00
parent 8ac9f2b133
commit 2ad74e03e5

223
pom.xml
View file

@ -1,112 +1,111 @@
<?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/xsd/maven-4.0.0.xsd">
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>
<modelVersion>4.0.0</modelVersion>
<parent>
<parent> <groupId>com.rometools</groupId>
<groupId>com.rometools</groupId> <artifactId>rome-parent</artifactId>
<artifactId>rome-parent</artifactId> <version>1.5.0</version>
<version>1.5.0</version> </parent>
</parent>
<artifactId>rome-certiorem</artifactId>
<artifactId>rome-certiorem</artifactId> <version>1.5.0</version>
<version>1.5.0-SNAPSHOT</version> <packaging>jar</packaging>
<packaging>jar</packaging>
<name>rome-certiorem</name>
<name>rome-certiorem</name>
<description>A PubSubHubub implementation for Java based on ROME</description>
<description>A PubSubHubub implementation for Java based on ROME</description>
<scm>
<scm> <connection>scm:git:ssh://github.com/rometools/rome-certiorem.git</connection>
<connection>scm:git:ssh://github.com/rometools/rome-certiorem.git</connection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-certiorem.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-certiorem.git</developerConnection> <url>https://github.com/rometools/rome-certiorem</url>
<url>https://github.com/rometools/rome-certiorem</url> </scm>
</scm>
<developers>
<developers> <developer>
<developer> <name>Robert Cooper</name>
<name>Robert Cooper</name> <email>kebernet@gmail.comM</email>
<email>kebernet@gmail.comM</email> <url>http://www.kebernet.net</url>
<url>http://www.kebernet.net</url> </developer>
</developer> <developer>
<developer> <name>Farrukh Najmi</name>
<name>Farrukh Najmi</name> <url>http://wellfleetsoftware.com</url>
<url>http://wellfleetsoftware.com</url> </developer>
</developer> </developers>
</developers>
<repositories>
<repositories> <repository>
<repository> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </repository>
</repository> </repositories>
</repositories>
<build>
<build> <plugins>
<plugins> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId>
<artifactId>maven-site-plugin</artifactId> <configuration>
<configuration> <port>9000</port>
<port>9000</port> <tempWebappDirectory>${basedir}/target/site/tempdir</tempWebappDirectory>
<tempWebappDirectory>${basedir}/target/site/tempdir</tempWebappDirectory> </configuration>
</configuration> </plugin>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId>
<artifactId>maven-scm-publish-plugin</artifactId> <configuration>
<configuration> <scmBranch>gh-pages</scmBranch>
<scmBranch>gh-pages</scmBranch> <pubScmUrl>${project.scm.developerConnection}</pubScmUrl>
<pubScmUrl>${project.scm.developerConnection}</pubScmUrl> <content>${project.build.directory}/site</content>
<content>${project.build.directory}/site</content> </configuration>
</configuration> </plugin>
</plugin> </plugins>
</plugins> </build>
</build>
<dependencies>
<dependencies> <dependency>
<dependency> <groupId>com.rometools</groupId>
<groupId>com.rometools</groupId> <artifactId>rome-fetcher</artifactId>
<artifactId>rome-fetcher</artifactId> <version>1.5.0</version>
<version>1.5.0</version> <exclusions>
<exclusions> <exclusion>
<exclusion> <artifactId>commons-httpclient</artifactId>
<artifactId>commons-httpclient</artifactId> <groupId>commons-httpclient</groupId>
<groupId>commons-httpclient</groupId> </exclusion>
</exclusion> </exclusions>
</exclusions> </dependency>
</dependency> <dependency>
<dependency> <groupId>javax.servlet</groupId>
<groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId>
<artifactId>servlet-api</artifactId> <scope>provided</scope>
<scope>provided</scope> </dependency>
</dependency> <dependency>
<dependency> <groupId>javax.persistence</groupId>
<groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId>
<artifactId>persistence-api</artifactId> <scope>provided</scope>
<scope>provided</scope> </dependency>
</dependency> <dependency>
<dependency> <groupId>org.slf4j</groupId>
<groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId>
<artifactId>slf4j-api</artifactId> </dependency>
</dependency> <dependency>
<dependency> <groupId>ch.qos.logback</groupId>
<groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId>
<artifactId>logback-classic</artifactId> <scope>test</scope>
<scope>test</scope> </dependency>
</dependency> <dependency>
<dependency> <groupId>junit</groupId>
<groupId>junit</groupId> <artifactId>junit</artifactId>
<artifactId>junit</artifactId> <scope>test</scope>
<scope>test</scope> </dependency>
</dependency> </dependencies>
</dependencies>
</project>
</project>