<?xml version="1.0" encoding="UTF-8"?>
<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">

    <parent>
        <groupId>org.lsst</groupId>
        <artifactId>org-lsst-ccs-parent</artifactId>
        <version>3.1.5</version>
    </parent>


    <name>LSST CCS - Camera SAL XML Parent</name>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.lsst</groupId>
    <artifactId>org-lsst-ccs-camera-sal-xml-parent</artifactId>
    <version>43.0.0</version>
    <packaging>pom</packaging>
    <url>${org.lsst.ccs.site.url}</url>
    
    <modules>
        <module>sal-xml-core</module>
        <module>sal-xml-files</module>
    </modules>
    
    <issueManagement>
        <system>Jira</system>
        <url>https://jira.slac.stanford.edu/browse/LCOBM</url>
    </issueManagement>

    <repositories>
        <repository>		
            <id>lsst-maven2-public</id>		
            <name>LSST Maven 2 central repository</name>		
            <url>https://repo-nexus.lsst.org/nexus/content/groups/ccs-maven2-public/</url>
        </repository>
    </repositories>

    <distributionManagement>
        <repository>
            <id>lsst-maven2</id>
            <name>LSST Maven 2 central repository</name>
            <url>https://repo-nexus.lsst.org/nexus/content/repositories/ccs-maven2/</url>
        </repository>
        <snapshotRepository>
            <id>lsst-maven2-snapshots</id>
            <name>LSST Maven2 central SNAPSHOTS repository</name>
            <url>https://repo-nexus.lsst.org/nexus/content/repositories/ccs-maven2-snapshots/</url>
        </snapshotRepository>
        <site>
            <id>lsst-maven2-site</id>
            <name>LSST Maven2 central site repository</name>
            <url>dav:${org.lsst.ccs.site.url}</url>
        </site>
    </distributionManagement>
    

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <org.lsst.ccs.site.name>ccs-site</org.lsst.ccs.site.name>
        <org.lsst.ccs.site.url>https://repo-nexus.lsst.org/nexus/content/sites/${org.lsst.ccs.site.name}/site-root/org-lsst-ccs-camera-sal-xml-parent/${project.version}/${project.artifactId}</org.lsst.ccs.site.url>
        <org_lsst_ccs_project_jira_prefix>XML</org_lsst_ccs_project_jira_prefix>         
        <org_lsst_ccs_project_jira_project>https://jira.slac.stanford.edu/browse/LCOBM</org_lsst_ccs_project_jira_project>
    </properties>
    
    <scm>
        <url>https://github.com/lsst-camera-ccs/org-lsst-ccs-camera-sal-xml.git</url>
        <connection>scm:git:git://github.com/lsst-camera-ccs/org-lsst-ccs-camera-sal-xml.git</connection>
        <developerConnection>scm:git:https://${env.GIT_USERNAME}:${env.GIT_PASSWORD}@github.com/lsst-camera-ccs/org-lsst-ccs-camera-sal-xml.git</developerConnection>
        <tag>org-lsst-ccs-camera-sal-xml-parent-43.0.0</tag>
    </scm>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.1.2</version>
                <configuration>
                    <systemPropertyVariables>
                        <no.missing.sal.class.warning>true</no.missing.sal.class.warning>
                        <test.running>true</test.running>
                    </systemPropertyVariables>
                </configuration>                        
            </plugin>
        </plugins>
    </build>
</project>

    
    
