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

    <version>6.2.13</version>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>org-lsst-ccs-subsystem-main</artifactId>
    <packaging>pom</packaging>
    <name>LSST CCS - Subsystem Main (Pom)</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.site.dir>site-root/toolkit/org-lsst-ccs-toolkit/${project.version}/${project.artifactId}</org.lsst.ccs.site.dir>                
        <org_lsst_ccs_project_type>external-pom</org_lsst_ccs_project_type>
    </properties>
                
    <dependencies>
        <dependency>
            <groupId>org.lsst</groupId>
            <artifactId>org-lsst-ccs-subsystem-console</artifactId>
            <version>6.2.13</version>
        </dependency>
    </dependencies>

    <profiles>
        <profile>
            <id>doAssemblyAndDistribution</id>
            <activation>
                <file>
                    <missing>build/skipAssemblyAndDistribution.foo</missing>
                </file>
            </activation>            
            <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>            
        </profile>
    </profiles>

    
</project>

