[maven-release-plugin] prepare release epub-creator-1.0.0

This commit is contained in:
Samuel Holtzkampf 2015-12-03 15:57:51 +02:00
parent 186cc9eeb1
commit b4cc28942a

145
pom.xml
View file

@ -1,73 +1,74 @@
<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>coza.opencollab</groupId> <groupId>coza.opencollab</groupId>
<artifactId>epub-creator</artifactId> <artifactId>epub-creator</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<scm> <scm>
<connection>scm:git:git@github.com:OpenCollabZA/epub-creator.git</connection> <connection>scm:git:git@github.com:OpenCollabZA/epub-creator.git</connection>
<url>scm:git:git@github.com:OpenCollabZA/epub-creator.git</url> <url>scm:git:git@github.com:OpenCollabZA/epub-creator.git</url>
<developerConnection>scm:git:git@github.com:OpenCollabZA/epub-creator.git</developerConnection> <developerConnection>scm:git:git@github.com:OpenCollabZA/epub-creator.git</developerConnection>
</scm> <tag>epub-creator-1.0.0</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <properties>
<maven.compiler.source>1.7</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.source>1.7</maven.compiler.source>
</properties> <maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency> <dependencies>
<groupId>junit</groupId> <dependency>
<artifactId>junit</artifactId> <groupId>junit</groupId>
<version>4.10</version> <artifactId>junit</artifactId>
<scope>test</scope> <version>4.10</version>
</dependency> <scope>test</scope>
<dependency> </dependency>
<groupId>net.sourceforge.htmlcleaner</groupId> <dependency>
<artifactId>htmlcleaner</artifactId> <groupId>net.sourceforge.htmlcleaner</groupId>
<version>2.8</version> <artifactId>htmlcleaner</artifactId>
</dependency> <version>2.8</version>
<dependency> </dependency>
<groupId>commons-io</groupId> <dependency>
<artifactId>commons-io</artifactId> <groupId>commons-io</groupId>
<version>2.4</version> <artifactId>commons-io</artifactId>
</dependency> <version>2.4</version>
<dependency> </dependency>
<groupId>commons-collections</groupId> <dependency>
<artifactId>commons-collections</artifactId> <groupId>commons-collections</groupId>
<version>3.2.1</version> <artifactId>commons-collections</artifactId>
</dependency> <version>3.2.1</version>
</dependency>
</dependencies>
</dependencies>
<build>
<plugins> <build>
<plugin> <plugins>
<groupId>org.apache.maven.plugins</groupId> <plugin>
<artifactId>maven-release-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId>
<version>2.5.3</version> <artifactId>maven-release-plugin</artifactId>
</plugin> <version>2.5.3</version>
</plugins> </plugin>
</build> </plugins>
</build>
<distributionManagement>
<repository> <distributionManagement>
<id>oc-nexus-releases</id> <repository>
<name>OpenCollab Nexus Release Repo</name> <id>oc-nexus-releases</id>
<url> <name>OpenCollab Nexus Release Repo</name>
http://nexus.opencollab.co.za/nexus/content/repositories/releases <url>
</url> http://nexus.opencollab.co.za/nexus/content/repositories/releases
</repository> </url>
<snapshotRepository> </repository>
<id>oc-nexus-snapshot</id> <snapshotRepository>
<name>OpenCollab Nexus Snapshot Repo</name> <id>oc-nexus-snapshot</id>
<url> <name>OpenCollab Nexus Snapshot Repo</name>
http://nexus.opencollab.co.za/nexus/content/repositories/snapshots <url>
</url> http://nexus.opencollab.co.za/nexus/content/repositories/snapshots
</snapshotRepository> </url>
</distributionManagement> </snapshotRepository>
</distributionManagement>
</project> </project>