<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>
	
	<parent>
		<groupId>net.sourceforge.javadpkg</groupId>
		<artifactId>dpkg-pom</artifactId>
		<version>1.0.5</version>
	</parent>
	
	<artifactId>dpkg</artifactId>
	<name>Debian Package Library</name>
	<description>The library for reading and writing Debian Packages.</description>
	
	<properties>
		<!-- The folder for the dependency libraries -->
		<project-lib-dep-folder>${multimodebasedir}/target/lib-dpkg-dep</project-lib-dep-folder>
		
		<!-- The target directory of the POM -->
		<multimodebasedir>${basedir}/../</multimodebasedir>
		
		<!-- The base directory -->
		<rootPath>../</rootPath>
	</properties>
	
	<dependencies>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-compress</artifactId>
		</dependency>
		<dependency>
			<groupId>org.tukaani</groupId>
			<artifactId>xz</artifactId>
		</dependency>
	</dependencies>
</project>
