<?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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.modeshape</groupId>
    <artifactId>modeshape</artifactId>
    <version>2.2.0.Final</version>
    <relativePath>../..</relativePath>
  </parent>
  <!-- The groupId and version values are inherited from parent -->
  <artifactId>modeshape-jdbc</artifactId>
  <packaging>jar</packaging>
  <name>ModeShape JDBC Driver</name>
  <description>JDBC driver to allow clients to query a ModeShape JCR repository with JCR-SQL2.</description>
  <url>http://www.modeshape.org</url>
  <!--
    Define the dependencies. Note that all version and scopes default to those defined in the dependencyManagement section of the
    parent pom.
  -->
  <dependencies>
    <dependency>
      <groupId>javax.jcr</groupId>
      <artifactId>jcr</artifactId>
    </dependency>
    <dependency>
        <groupId>org.modeshape</groupId>
        <artifactId>modeshape-classloader-maven</artifactId>
    </dependency>    
    <dependency>
      <groupId>org.modeshape</groupId>
      <artifactId>modeshape-jcr-api</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.modeshape</groupId>
      <artifactId>modeshape-common</artifactId>
      <version>${project.version}</version>
    </dependency>   
    <dependency>
        <groupId>org.modeshape</groupId>
        <artifactId>modeshape-web-jcr-rest-client</artifactId>
        <version>${project.version}</version>
    </dependency>  
    <dependency>
    	<groupId>org.modeshape</groupId>
    	<artifactId>modeshape-jcr</artifactId>
    	<version>${project.version}</version>
    </dependency>
    <dependency>
    	<groupId>org.modeshape</groupId>
    	<artifactId>modeshape-graph</artifactId>
    	<version>${project.version}</version>
    	<scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.modeshape</groupId>
        <artifactId>modeshape-repository</artifactId>
        <scope>test</scope>
    </dependency>         
    <dependency>
        <groupId>org.modeshape</groupId>
        <artifactId>modeshape-web-jcr-rest-war</artifactId>
        <type>war</type>
        <version>${project.version}</version>
        <scope>integration-test</scope>
    </dependency>    
    <dependency>
      <groupId>org.modeshape</groupId>
      <artifactId>modeshape-common</artifactId>
      <version>${project.version}</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
        
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </dependency>

    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </dependency>
    <dependency>
      <groupId>org.jboss.security</groupId>
      <artifactId>jboss-idtrust</artifactId>
      <version>2.0.2.CR1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jboss.security</groupId>
      <artifactId>jboss-security-spi-bare</artifactId>
      <version>2.0.2.SP6</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jboss.security</groupId>
      <artifactId>jbosssx-bare</artifactId>
      <version>2.0.2.SP6</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>apache-xalan</groupId>
          <artifactId>xalan</artifactId>
        </exclusion>
        <exclusion>
          <groupId>apache-xalan</groupId>
          <artifactId>serializer</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.0</version>
        </dependency>    

    <!-- 
    Testing (note the scope)
    -->
    <!-- 
    Logging (require SLF4J API for compiling, but use Log4J and its SLF4J binding for testing) 
    -->
		<!-- 
      ID Trust (JAAS Dependency) for testing
    -->
  </dependencies>
  
    <profiles>
        <profile>
            <id>cargo-1</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>

            <build>
             <resources>
                 <resource>
                  <filtering>false</filtering>
                      <directory>src/main/resources</directory>
                      <includes>
                           <include>*</include>
                           <include>**/*</include>
                        </includes>
                  </resource>
                    <!-- Apply the properties set in the POM to the resource files -->
                  <resource>
                       <filtering>true</filtering>
                        <directory>src/main/resources</directory>
                         <includes>
                            <include>**/JdbcI18n.properties</include>
                        </includes>
                    </resource>
                </resources>
                <plugins>
                <!--
                        Override the default Surefire behavior to run during
                        integration-test phase
                    -->
                    <plugin>
                        <groupId>org.apache.maven.plugins
                        </groupId>
                        <artifactId>maven-surefire-plugin
                        </artifactId>
                        <configuration>
                            <skip>true</skip>
                        </configuration>
                        <executions>
                            <execution>
                                <id>surefire-it</id>
                                <phase>integration-test</phase>
                                <goals>
                                    <goal>test</goal>
                                </goals>
                                <configuration>
                                    <skip>false</skip>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>

      <!--
       Adding OSGI metadata to the JAR without changing the packaging type.
      -->
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <executions>
          <execution>
            <id>bundle-manifest</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
        <!--  using the kit.xml to exclude the log4j related jars from the jar-with-dependencies -->
             <descriptors>
                <descriptor>src/assembly/kit.xml</descriptor>
            </descriptors>
          <archive>
            <manifest>
              <addClasspath>true</addClasspath>
            </manifest>
          </archive>
        </configuration> 
        <executions>
          <execution>
            <id>make-my-jar-with-dependencies</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
    </plugins>
  </build>
  </profile>
 </profiles>
        
</project>