epub-creator/pom.xml

55 lines
2 KiB
XML
Raw Normal View History

2015-12-03 13:23:58 +00:00
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>coza.opencollab</groupId>
<artifactId>epub-creator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlcleaner</groupId>
<artifactId>htmlcleaner</artifactId>
<version>2.8</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<distributionManagement>
<repository>
<id>oc-nexus-releases</id>
<name>OpenCollab Nexus Release Repo</name>
<url>
http://nexus.opencollab.co.za/nexus/content/repositories/releases
</url>
</repository>
<snapshotRepository>
<id>oc-nexus-snapshot</id>
<name>OpenCollab Nexus Snapshot Repo</name>
<url>
http://nexus.opencollab.co.za/nexus/content/repositories/snapshots
</url>
</snapshotRepository>
</distributionManagement>
</project>