<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>tracee-examples-ejb-impl</artifactId>
    <packaging>ejb</packaging>

    <parent>
        <groupId>io.tracee.examples</groupId>
        <artifactId>tracee-examples-ejb</artifactId>
        <version>0.3.0</version>
    </parent>

	<properties />

    <name>tracee-examples-ejb-impl</name>
    <description>Please refer to https://github.com/holisticon/tracee.</description>

    <build>
        <finalName>${project.artifactId}</finalName>
        <plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-ejb-plugin</artifactId>
				<configuration>
					<ejbVersion>3.0</ejbVersion>
				</configuration>
			</plugin>

            <plugin>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>validate</phase>
                        <goals>
                            <goal>copy</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${endorsed.dir}</outputDirectory>
                            <silent>true</silent>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>javax</groupId>
                                    <artifactId>javaee-endorsed-api</artifactId>
                                    <version>6.0</version>
                                    <type>jar</type>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-web-api</artifactId>
            <version>6.0</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>io.tracee.examples</groupId>
            <artifactId>tracee-examples-ejb-interface</artifactId>
            <version>0.3.0</version>
        </dependency>

        <dependency>
            <groupId>io.tracee</groupId>
            <artifactId>tracee-api</artifactId>
            <version>0.3.0</version>
        </dependency>

        <dependency>
            <groupId>io.tracee.backend</groupId>
            <artifactId>tracee-slf4j</artifactId>
            <version>0.3.0</version>
        </dependency>

        <dependency>
            <groupId>io.tracee</groupId>
            <artifactId>tracee-jaxws</artifactId>
            <version>0.3.0</version>
        </dependency>

        <dependency>
            <groupId>io.tracee</groupId>
            <artifactId>tracee-context-logger-watchdog</artifactId>
            <version>0.3.0</version>
        </dependency>

        <dependency>
            <groupId>io.tracee</groupId>
            <artifactId>tracee-context-logger-ejb</artifactId>
            <version>0.3.0</version>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
    </dependencies>
</project>
