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

This commit is contained in:
Francois Campbell 2019-11-06 00:41:05 +02:00
parent 5cea934491
commit f74f9d44b7

194
pom.xml
View file

@ -1,97 +1,97 @@
<?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.epub</groupId> <groupId>coza.opencollab.epub</groupId>
<artifactId>epub-creator</artifactId> <artifactId>epub-creator</artifactId>
<version>1.0.1-SNAPSHOT</version> <version>1.0.1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<scm> <scm>
<connection>scm:git:francois-opencollab@github.com:OpenCollabZA/epub-creator.git</connection> <connection>scm:git:francois-opencollab@github.com:OpenCollabZA/epub-creator.git</connection>
<url>scm:git:francois-opencollab@github.com:OpenCollabZA/epub-creator.git</url> <url>scm:git:francois-opencollab@github.com:OpenCollabZA/epub-creator.git</url>
<developerConnection>scm:git:francois-opencollab@github.com:OpenCollabZA/epub-creator.git</developerConnection> <developerConnection>scm:git:francois-opencollab@github.com:OpenCollabZA/epub-creator.git</developerConnection>
<tag>HEAD</tag> <tag>epub-creator-1.0.1</tag>
</scm> </scm>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.target>1.7</maven.compiler.target>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.10</version> <version>4.10</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.sourceforge.htmlcleaner</groupId> <groupId>net.sourceforge.htmlcleaner</groupId>
<artifactId>htmlcleaner</artifactId> <artifactId>htmlcleaner</artifactId>
<version>2.8</version> <version>2.8</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
<version>2.4</version> <version>2.4</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-collections</groupId> <groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId> <artifactId>commons-collections</artifactId>
<version>3.2.1</version> <version>3.2.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId> <artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version> <version>2.5.3</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>opencollab-maven-public-releases</id> <id>opencollab-maven-public-releases</id>
<name>OPENCOLLAB public releases repository</name> <name>OPENCOLLAB public releases repository</name>
<url>https://nexus3.opencollab.co.za/repository/opencollab-maven-public-releases</url> <url>https://nexus3.opencollab.co.za/repository/opencollab-maven-public-releases</url>
</repository> </repository>
<snapshotRepository> <snapshotRepository>
<id>opencollab-maven-public-snapshots</id> <id>opencollab-maven-public-snapshots</id>
<name>OPENCOLLAB public snaphots repository</name> <name>OPENCOLLAB public snaphots repository</name>
<url>https://nexus3.opencollab.co.za/repository/opencollab-maven-public-snapshots</url> <url>https://nexus3.opencollab.co.za/repository/opencollab-maven-public-snapshots</url>
</snapshotRepository> </snapshotRepository>
</distributionManagement> </distributionManagement>
<profiles> <profiles>
<profile> <profile>
<id>releases</id> <id>releases</id>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.sonatype.plugins</groupId> <groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId> <artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.5.1</version> <version>1.5.1</version>
<executions> <executions>
<execution> <execution>
<id>default-deploy</id> <id>default-deploy</id>
<phase>deploy</phase> <phase>deploy</phase>
<goals> <goals>
<goal>deploy</goal> <goal>deploy</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<serverId>nexus-releases</serverId> <serverId>nexus-releases</serverId>
<nexusUrl>https://nexus3.opencollab.co.za/repository/opencollab-maven-public-releases</nexusUrl> <nexusUrl>https://nexus3.opencollab.co.za/repository/opencollab-maven-public-releases</nexusUrl>
<skipStaging>true</skipStaging> <skipStaging>true</skipStaging>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile> </profile>
</profiles> </profiles>
</project> </project>