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

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

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

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-ejb-plugin</artifactId>
				<configuration>
					<ejbVersion>3.0</ejbVersion>
				</configuration>
			</plugin>
		</plugins>
	</build>

    <dependencies>

        <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-api</artifactId>
            <version>6.0</version>
            <scope>provided</scope>
        </dependency>
		<dependency>
			<groupId>io.tracee.examples</groupId>
			<artifactId>tracee-examples-jms-api</artifactId>
			<version>0.3.0</version>
		</dependency>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-jms</artifactId>
			<version>0.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
    </dependencies>

</project>
