<?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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.picocontainer</groupId>
		<artifactId>picocontainer-parent</artifactId>
		<version>2.0-SNAPSHOT</version>
	</parent>
	<artifactId>picocontainer-gems</artifactId>
	<name>PicoContainer Gems</name>
	<packaging>jar</packaging>
	<dependencies>
		<dependency>
			<groupId>${pom.groupId}</groupId>
			<artifactId>picocontainer</artifactId>
		</dependency>
		<!-- For proxy -->
		<dependency>
			<groupId>proxytoys</groupId>
			<artifactId>proxytoys</artifactId>
            <optional>true</optional>
		</dependency>
		<dependency>
			<groupId>cglib</groupId>
			<artifactId>cglib-nodep</artifactId>
            <optional>true</optional>
		</dependency>
		<!-- For monitors -->
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
            <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
            <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>prefuse</groupId>
			<artifactId>prefuse</artifactId>
            <optional>true</optional>
		</dependency>
        <!-- For test -->
        <dependency>
            <groupId>${pom.groupId}</groupId>
            <artifactId>picocontainer-tck</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>asm</groupId>
            <artifactId>asm</artifactId>
            <version>3.0</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>
