<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>

	<groupId>io.tracee.binding</groupId>
    <artifactId>tracee-jms</artifactId>
    <packaging>bundle</packaging>

    <parent>
        <groupId>io.tracee</groupId>
        <artifactId>tracee-parent</artifactId>
        <version>1.2.0</version>
		<relativePath>../../pom.xml</relativePath>
    </parent>

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

    <dependencies>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-api</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-core</artifactId>
			<version>${project.version}</version>
		</dependency>
        <dependency>
            <groupId>javax.ejb</groupId>
            <artifactId>ejb-api</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.jms</groupId>
            <artifactId>jms-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.openejb</groupId>
            <artifactId>openejb-core</artifactId>
            <version>4.5.2</version>
            <scope>test</scope>
        </dependency>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-testhelper</artifactId>
		</dependency>
    </dependencies>
</project>
