<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>test</groupId>
	<artifactId>test-dependency-resolution</artifactId>
	<version>1.0.0-SNAPSHOT</version>
	<name>Dependency resolution test</name>
	<dependencies>
		<!-- This lib has the following transitive dep: commons-collections:commons-collections:jar:2.1 -->
		<dependency>
			<groupId>commons-pool</groupId>
			<artifactId>commons-pool</artifactId>
			<version>1.2</version>
		</dependency>
		<!-- This lib has the following transitive dep: commons-collections:commons-collections:jar:3.0 -->
		<dependency>
			<groupId>commons-configuration</groupId>
			<artifactId>commons-configuration</artifactId>
			<version>1.1</version>
		</dependency>
		<!-- Adding a dependency breaks the behaviour between 2.0.4 and 2.0.5 -->
		<!-- NOTE: itext has no transitive dep to commons-collection -->
		<dependency>
			<groupId>com.lowagie</groupId>
			<artifactId>itext</artifactId>
			<version>1.3</version>
		</dependency>
	</dependencies>
</project>
