<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>
        <groupId>org.lsst</groupId>
        <artifactId>org-lsst-ccs</artifactId>
        <version>6.2.13</version>
        <relativePath>../</relativePath>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>org-lsst-ccs-subsystem-console</artifactId>
    <packaging>jar</packaging>
    <version>6.2.13</version>
    <name>LSST CCS - Console Subsystem</name>
    <url>${org.lsst.ccs.site.url.base}${org.lsst.ccs.site.dir}</url>

    <distributionManagement>
        <site>
            <id>github</id>
            <name>LSST Public pages in github</name>
            <url>scm:git:https://${env.GIT_USERNAME}:${env.GIT_PASSWORD}@github.com/lsst-camera-ccs/org-lsst-ccs-site.git</url>
        </site>
    </distributionManagement>

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

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.lsst</groupId>
                <artifactId>org-lsst-ccs-maven-plugin-distribution</artifactId>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>commons-net</groupId>
            <artifactId>commons-net</artifactId>
            <version>3.3</version>
        </dependency>
        <dependency>
            <groupId>org.lsst</groupId>
            <artifactId>org-lsst-ccs-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.lsst</groupId>
            <artifactId>org-lsst-ccs-core</artifactId>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
        <!-- REMOVE WHEN POSSIBLE. FIGURE OUT VERSION DEPENDENCY FROM org-lsst-ccs-core -->
        <dependency>
            <groupId>org.freehep</groupId>
            <artifactId>freehep-util</artifactId>
            <version>2.1.3-patch</version>
        </dependency>
        <dependency>
            <groupId>net.sf.py4j</groupId>
            <artifactId>py4j</artifactId>
            <version>0.10.4</version>
        </dependency>
    </dependencies>
</project>

