<?xml version="1.0"?>
<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.modeshape</groupId>
    <artifactId>modeshape-parent</artifactId>
    <version>3.0.0.Beta1</version>
    <relativePath>../../modeshape-parent/pom.xml</relativePath>
  </parent>
  <!-- The groupId and version values are inherited from parent  -->
  <artifactId>modeshape-jbossas-integration-tests</artifactId>
  <name>ModeShape for JBoss AS (Integration Tests)</name>
  <description>Integration tests that use the ModeShape subsystem for JBoss AS7</description>
  <url>http://www.modeshape.org</url>
  <properties>
    <jbossas-version>7.1.1.Final</jbossas-version>
    <arquillian.suspend>n</arquillian.suspend>
  </properties>
  <dependencyManagement>
    <dependencies>
      <!-- Define the version of JBoss' Java EE 6 APIs we want to import.
            Any dependencies from org.jboss.spec will have their version defined by this
            BOM -->
      <!-- JBoss distributes a complete set of Java EE 6 APIs including
            a Bill of Materials (BOM). A BOM specifies the versions of a "stack" (or
            a collection) of artifacts. We use this here so that we always get the correct
            versions of artifacts. Here we use the jboss-javaee-6.0-with-tools stack
            (you can read this as the JBoss stack of the Java EE 6 APIs, with some extras
            tools for your project, such as Arquillian for testing) -->
      <dependency>
        <groupId>org.jboss.bom</groupId>
        <artifactId>jboss-javaee-6.0-with-tools</artifactId>
        <version>1.0.0.M11</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <!--
    Define the dependencies. Note that all version and scopes default to
    those defined in the dependencyManagement section of the parent pom.
  -->
  <dependencies>
    <!-- Import the JCR API (and ModeShape's extension), we use provided scope as the API is included in JBoss AS 7 -->
    <dependency>
      <groupId>org.modeshape</groupId>
      <artifactId>modeshape-jcr</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.modeshape</groupId>
      <artifactId>modeshape-jcr-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <!-- Import the CDI API, we use provided scope as the API is included in JBoss AS 7 -->
    <dependency>
      <groupId>javax.enterprise</groupId>
      <artifactId>cdi-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <!-- Import the Common Annotations API (JSR-250), using 'provided' scope as the API is included in JBoss AS 7 -->
    <dependency>
      <groupId>org.jboss.spec.javax.annotation</groupId>
      <artifactId>jboss-annotations-api_1.1_spec</artifactId>
      <scope>provided</scope>
    </dependency>
    <!-- Import the EJB API, using 'provided' scope as the API is included in JBoss AS 7 -->
    <dependency>
      <groupId>org.jboss.spec.javax.ejb</groupId>
      <artifactId>jboss-ejb-api_3.1_spec</artifactId>
      <scope>provided</scope>
    </dependency>
    <!-- Import JUnit, Arquillian, and other artifacts used in the tests -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jboss.arquillian.junit</groupId>
      <artifactId>arquillian-junit-container</artifactId>
      <scope>test</scope>
    </dependency>
      <dependency>
          <groupId>org.jboss.shrinkwrap.resolver</groupId>
          <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
          <scope>test</scope>
      </dependency>
    <dependency>
      <groupId>org.jboss.arquillian.protocol</groupId>
      <artifactId>arquillian-protocol-servlet</artifactId>
      <scope>test</scope>
    </dependency>

      <dependency>
          <groupId>org.modeshape</groupId>
          <artifactId>modeshape-jcr</artifactId>
          <version>${project.version}</version>
          <scope>test</scope>
          <type>test-jar</type>
      </dependency>

      <!--Needed by the JDBC remote driver tets -->
      <dependency>
          <groupId>org.modeshape</groupId>
          <artifactId>modeshape-jdbc</artifactId>
          <version>${project.version}</version>
          <scope>test</scope>
      </dependency>
      <dependency>
          <groupId>org.modeshape</groupId>
          <artifactId>modeshape-jdbc</artifactId>
          <version>${project.version}</version>
          <scope>test</scope>
          <type>test-jar</type>
      </dependency>
      <dependency>
          <groupId>org.modeshape</groupId>
          <artifactId>modeshape-jdbc-local</artifactId>
          <version>${project.version}</version>
          <scope>test</scope>
          <type>test-jar</type>
      </dependency>
      <dependency>
          <groupId>org.modeshape</groupId>
          <artifactId>modeshape-jdbc-local</artifactId>
          <version>${project.version}</version>
          <scope>test</scope>
      </dependency>
      <!--Needed by the webdav tests -->
      <dependency>
          <groupId>org.modeshape</groupId>
          <artifactId>modeshape-web-jcr-webdav-war</artifactId>
          <version>${project.version}</version>
          <scope>test</scope>
          <type>test-jar</type>
      </dependency>
      <dependency>
          <groupId>com.googlecode.sardine</groupId>
          <artifactId>sardine</artifactId>
      </dependency>
  </dependencies>
  <build>
    <resources>
      <resource>
        <filtering>false</filtering>
        <directory>src/main/webapp</directory>
        <includes>
          <include>*</include>
          <include>**/*</include>
        </includes>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>src/test/resources</directory>
        <filtering>true</filtering>
        <includes>
          <include>*</include>
        </includes>
      </testResource>
      <testResource>
        <directory>src/test/resources</directory>
        <filtering>false</filtering>
        <includes>
          <include>**/*</include>
        </includes>
      </testResource>
    </testResources>
  </build>

  <profiles>
    <profile>
      <id>arquillian-tests</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <dependencies>
        <dependency>
          <groupId>org.jboss.spec</groupId>
          <artifactId>jboss-javaee-6.0</artifactId>
          <version>1.0.0.Final</version>
          <type>pom</type>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.jboss.as</groupId>
          <artifactId>jboss-as-arquillian-container-managed</artifactId>
        </dependency>
      </dependencies>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>${version.dependency.plugin}</version>
            <executions>
              <execution>
                <id>unpack</id>
                <phase>process-test-classes</phase>
                <goals>
                  <goal>unpack</goal>
                </goals>
                <configuration>
                    <artifactItems>
                        <!-- Unpack the JBoss AS7 version (from the Maven repository) into the 'target' directory -->
                        <artifactItem>
                            <groupId>org.jboss.as</groupId>
                            <artifactId>jboss-as-dist</artifactId>
                            <version>${jbossas-version}</version>
                            <type>zip</type>
                            <overWrite>false</overWrite>
                            <outputDirectory>${project.build.directory}</outputDirectory>
                        </artifactItem>

                        <!-- Unpack the ModeShape distribution which is installed (hopefully) locally-->
                        <artifactItem>
                            <groupId>org.modeshape</groupId>
                            <artifactId>modeshape-distribution</artifactId>
                            <version>${project.version}</version>
                            <classifier>jbossas-7-dist</classifier>
                            <type>zip</type>
                            <overWrite>false</overWrite>
                            <outputDirectory>${project.build.directory}/jboss-as-${jbossas-version}</outputDirectory>
                        </artifactItem>
                    </artifactItems>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
