<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>org.mule.sap</groupId>
        <artifactId>mule-sap-pi-connector</artifactId>
        <version>1.1</version>
    </parent>
    <artifactId>mule-sap-connector</artifactId>
    <name>SAP connector for Mule</name>

    <dependencies>
        <!-- TODO this must be connector spec v1.0 -->
        <dependency>
            <groupId>org.apache.geronimo.specs</groupId>
            <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
            <version>1.1</version>
            <scope>provided</scope>
        </dependency>
        <!-- TODO is this the right EJB spec version? -->
        <dependency>
            <groupId>org.apache.geronimo.specs</groupId>
            <artifactId>geronimo-ejb_2.1_spec</artifactId>
            <version>1.1</version>
            <scope>provided</scope>
        </dependency>

        <!-- SAP dependencies -->
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>tc.logging.java.impl</artifactId>
            <version>7.3001.20101028125331</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>aii.af.svc_api</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>aii.af.cpa.svc.api</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>tc.bl.txmanagerimpl.plb.impl</artifactId>
            <version>7.3001.20101028125331</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>tc.bl.guidgenerator.impl</artifactId>
            <version>7.3001.20101028125331</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>tc.je.appcontext_api.api</artifactId>
            <version>7.3001.20100915084850</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>aii.af.ms.ifc_api</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>aii.af.lib.mod</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>aii.sec.lib_api</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>tc.sec.ssf</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>tc.je.clientlib.impl</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap</groupId>
            <artifactId>tc.exception.impl</artifactId>
            <version>7.3001.20110215130618</version>
            <scope>provided</scope>
        </dependency>

        <!-- Mule/connector dependencies. Will be packaged in the ear -->
        <dependency>
            <groupId>org.mule.tools.modules.dynamic-module</groupId>
            <artifactId>api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-sfdc</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- the version used here must match the version in the SF connector -->
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
            <scope>provided</scope>
        </dependency>

        <!-- test dependencies -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <repositories>
        <repository>
            <id>mulesoft-releases</id>
            <name>MuleForge Release Repository</name>
            <url>http://repository.mulesoft.org/releases/</url>
        </repository>
        <repository>
            <!-- Remove when salesforce-connector 4.2 will be released. -->
            <id>mulesoft-snapshots</id>
            <url>http://repository.mulesoft.org/snapshots/</url>
        </repository>
    </repositories>

</project>