<?xml version="1.0" encoding="ISO-8859-1"?>
<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>de.unioninvestment.osiris.marktdepot.os.business-objects</groupId>
        <artifactId>business-objects</artifactId>
        <version>1.0.0</version>
    </parent>
    <groupId>de.unioninvestment.osiris.marktdepot.os.business-objects.bo-common</groupId>
    <artifactId>bo-common</artifactId>
    <packaging>jbi-shared-library</packaging>
    <name>Osiris :: MarktDepot :: Services :: Business Objects :: Common Shared Library</name>
    <version>1.0.1-SNAPSHOT</version>
    <dependencies>
        <dependency>
            <groupId>de.unioninvestment.osiris.marktdepot.os.business-objects.bo-tools-shared</groupId>
            <artifactId>bo-tools-shared</artifactId>
            <version>1.0.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jibx</groupId>
            <artifactId>jibx-extras</artifactId>
        </dependency>
    </dependencies>
    <build>
        <resources>
            <resource>
                <!-- Das generierte JiBX Mapping wird per Include als "Precompiled Mapping" in
                 das Main Binding XML der Komponente Shared Web Service Communication
                 eingebunden. Dazu muss es in das resultierende JAR kopiert werden. -->
                <directory>src/main/config</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.servicemix.tooling</groupId>
                <artifactId>jbi-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.jibx</groupId>
                <artifactId>maven-jibx-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

