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

    <name>LSST CCS - Software Versions Publish Plugin</name>
    <artifactId>org-lsst-ccs-software-versions-publish-plugin</artifactId>
    <groupId>org.lsst</groupId>
    <version>43.0.3</version>
    <modelVersion>4.0.0</modelVersion>
    <packaging>maven-plugin</packaging>
    <url>${org.lsst.ccs.site.url.base}${org.lsst.ccs.site.dir}</url>

    <parent>
        <groupId>org.lsst</groupId>
        <artifactId>org-lsst-ccs-software-versions</artifactId>
        <version>43.0.3</version>
        <relativePath>../</relativePath>
    </parent>

    <properties>
        <org.lsst.ccs.subsystem.project.name>org-lsst-ccs-software-versions-publish-plugin</org.lsst.ccs.subsystem.project.name>
        <org.lsst.ccs.site.dir>site-root/distributions/org-lsst-ccs-software-versions/${project.version}/${project.artifactId}</org.lsst.ccs.site.dir>     
    </properties>    

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

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>3.9.0</version>
                <configuration>
                    <goalPrefix>publish</goalPrefix>
                </configuration>
            </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.8.1</version>
            <!-- other configurations -->
        </plugin>
        </plugins>
    </build>


    <dependencies>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-core</artifactId>
            <version>3.9.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>3.9.0</version>
        </dependency>        
        <dependency>
            <groupId>org.apache.maven.plugin-tools</groupId>
            <artifactId>maven-plugin-annotations</artifactId>
            <version>3.9.0</version>
        </dependency>        
    </dependencies>    
    
</project>
