<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>info.novatec.testit</groupId>
        <artifactId>webtester</artifactId>
        <version>2.10.3</version>
    </parent>

    <artifactId>webtester-support-junit4</artifactId>
    <name>testIT | WebTester - Support - JUnit 4.x</name>

    <dependencies>

        <dependency>
            <!-- Required dependency on webtester-core. This is needed in order to
                have access to the frameworks base features. The dependency should be inherited
                by projects using this module. -->
            <groupId>info.novatec.testit</groupId>
            <artifactId>webtester-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <!-- Provided Selenium dependency used to have access to the Selenium API. -->
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-support</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <!-- Provided dependency on junit. Projects using this module should provide
                their own version of the junit dependency and not be forced to inherit this
                one! -->
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>provided</scope>
        </dependency>

    </dependencies>

</project>
