<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>

  <artifactId>eximeebpms-qa-integration-tests-webapps</artifactId>
  <name>EximeeBPMS - QA Integration Tests - Webapps ITs</name>

  <parent>
    <groupId>org.eximeebpms.bpm.qa</groupId>
    <artifactId>eximeebpms-qa-integration-tests-webapps-root</artifactId>
    <version>1.1.2</version>
    <relativePath>../</relativePath>
  </parent>
  
  <!-- 
    Maven modules running these tests with the failsafe plugin should declare the following system property:
    
    * selenium.screenshot.directory: defines where to store screenshots on test failures 
        (e.g. set to "${project.build.directory}/selenium-screenshots"); 
        no screenshots created if not set
   -->

  <dependencies>
    <!-- set shrinkwrap artifacts -->
    <dependency>
      <groupId>org.jboss.shrinkwrap.resolver</groupId>
      <artifactId>shrinkwrap-resolver-depchain</artifactId>
      <exclusions>
        <exclusion>
          <!-- conflicts with the version pulled in transitively via selenium-java  -->
          <groupId>com.google.guava</groupId>
          <artifactId>guava</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-lang</groupId>
          <artifactId>commons-lang</artifactId>
        </exclusion>
        <exclusion>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-lang3</artifactId>
        </exclusion>
      </exclusions>
      <scope>provided</scope>
      <type>pom</type>
    </dependency>

    <dependency>
      <groupId>com.konghq</groupId>
      <artifactId>unirest-java</artifactId>
      <version>${version.unirest-java}</version>
      <classifier>standalone</classifier>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.eximeebpms.bpm</groupId>
      <artifactId>eximeebpms-engine</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.eximeebpms.bpm</groupId>
      <artifactId>eximeebpms-engine-rest</artifactId>
      <type>jar</type>
      <classifier>classes</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.jboss.arquillian.junit</groupId>
      <artifactId>arquillian-junit-container</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.seleniumhq.selenium</groupId>
      <artifactId>selenium-java</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>

</project>
