<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>wicketstuff-objectautocomplete-parent</artifactId>
      <version>10.0.0-M2</version>
    </parent>

    <artifactId>wicketstuff-objectautocomplete</artifactId>
    <packaging>jar</packaging>

    <name>ObjectAutoComplete</name>
    <description>
        Wicket component for selecting entities via autocomplete
    </description>

    <inceptionYear>2008</inceptionYear>

    <dependencies>
        <dependency>
            <groupId>org.apache.wicket</groupId>
            <artifactId>wicket-extensions</artifactId>
        </dependency>
        <dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-api</artifactId>
        </dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-engine</artifactId>
		</dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>

    </dependencies>

</project>
