<?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/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>atlassian-embedded-crowd</artifactId>
        <groupId>com.atlassian.crowd</groupId>
        <version>2.5.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>embedded-crowd-pageobjects</artifactId>
    <name>Atlassian Embedded Crowd - PageObjects</name>
    <description>Provides PageObjects to write web UI tests for the embedded crowd plugin.</description>
    
     <dependencies>
        <dependency>
            <groupId>com.atlassian.selenium</groupId>
            <artifactId>atlassian-pageobjects-elements</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
        </dependency>
    </dependencies>

    <build> 
       <plugins>
          <plugin>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
                <excludes>
                   <exclude>it/**/*.java</exclude>
                </excludes>
             </configuration>
          </plugin>
       </plugins>
    </build>

    <properties>
        <license.scope>test</license.scope>
    </properties>
</project>
