<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.wicketstuff</groupId>
	<artifactId>jdk-1.5-parent</artifactId>
        <version>1.4.21</version>
    </parent>

    <artifactId>annotation</artifactId>
    <packaging>jar</packaging>

    <name>Wicket Annotations</name>
    <description>
        Use wicketstuff-annotation to use Java Annotations and class path searching to mount your Wicket pages.
    </description>

    <developers>
        <developer>
            <id>donohoe</id>
            <name>Doug Donohoe</name>
            <email>doug at donohoe dot info</email>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>2.5.6</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
