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

    <parent>
        <relativePath>../</relativePath>
        <groupId>org.lsst</groupId>
        <artifactId>org-lsst-ccs-messaging</artifactId>
        <version>6.2.13</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>org-lsst-ccs-messaging-jms</artifactId>
    <packaging>jar</packaging>
    <name>LSST CCS - JMS Implementation</name>

    <properties>
        <org.lsst.ccs.site.dir>site-root/toolkit/org-lsst-ccs-toolkit/${project.version}/</org.lsst.ccs.site.dir>                
    </properties>


    <dependencies>
        <dependency>
            <groupId>org.lsst</groupId>
            <artifactId>org-lsst-ccs-messaging-layer</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.jms</groupId>
            <artifactId>jms</artifactId>
            <version>1.1</version>
            <type>jar</type>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>repository.jboss.org-public</id>
            <name>JBoss.org Maven repository</name>
            <url>https://repository.jboss.org/nexus/content/groups/public</url>
        </repository>
    </repositories>
</project>

