<?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">
    <modelVersion>4.0.0</modelVersion>

    <groupId>edu.wisc.cae.manageip</groupId>
    <artifactId>manageip-parent</artifactId>
    <version>1.0.22</version>
    <packaging>pom</packaging>

    <name>Manage IP Parent</name>
    <description>Parent for IP Management Web Service</description>
    <url>https://caeapi.cae.wisc.edu</url>

    <organization>
        <name>University of Wisconsin - Madison</name>
        <url>https://www.wisc.edu/</url>
    </organization>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
            <comments>Copyright 2020, Board of Regents of the University of Wisconsin System.
                This project includes software developed by the University of Wisconsin System.
                https://www.wisconsin.edu/
            </comments>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>James E. Drews</name>
            <email>james.drews@wisc.edu</email>
            <organization>University of Wisconsin - Madison, Computer-Aided Engineering Center</organization>
            <url>https://www.cae.wisc.edu/</url>
        </developer>
    </developers>

    <prerequisites>
        <maven>3.0</maven>
    </prerequisites>

    <distributionManagement>
        <repository>
            <id>code.cae-public-releases</id>
            <url>sftp://schema.cae.wisc.edu/var/www/vhosts/schema.cae.wisc.edu/httpdocs/maven/content/repositories/public-releases/</url>
        </repository>
        <snapshotRepository>
            <id>code.cae-public-snapshots</id>
            <url>sftp://schema.cae.wisc.edu/var/www/vhosts/schema.cae.wisc.edu/httpdocs/maven/content/repositories/public-snapshots/</url>
        </snapshotRepository>
        <site>
            <id>schema.cae.wisc.edu</id>
            <url>sftp://schema.cae.wisc.edu/var/www/vhosts/schema.cae.wisc.edu/httpdocs/docs/manageip/${project.version}/manageip-parent-1.0/</url>
        </site>
    </distributionManagement>

    <properties>
        <manageip.version>1.0.22</manageip.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <org.springframework.version>5.3.23</org.springframework.version>
        <org.springframework.ws.version>3.1.4</org.springframework.ws.version>
        <org.springframework.security.version>5.5.8</org.springframework.security.version>
        <additionalparam>-Xdoclint:none</additionalparam>
    </properties>

    <repositories>
        <repository>
            <id>code.cae-public-releases</id>
            <url>https://schema.cae.wisc.edu/maven/content/repositories/public-releases/</url>
        </repository>
        <repository>
            <id>code.cae-public-snapshots</id>
            <url>https://schema.cae.wisc.edu/maven/content/repositories/public-snapshots/</url>
            <releases><enabled>false</enabled></releases>
            <snapshots><enabled>true</enabled></snapshots>
        </repository>
        <repository>
            <id>code.cae-external-3rdparty</id>
            <url>https://schema.cae.wisc.edu/maven/content/repositories/external-3rdparty/</url>
        </repository>
        <repository>
            <id>org.opensaml</id>
            <name>OpenSAML</name>
            <url>https://build.shibboleth.net/nexus/content/repositories/releases</url>
        </repository>
        <repository>
            <id>repository.spring.release</id>
            <name>Spring GA Repository</name>
            <url>https://repo.spring.io/release</url>
        </repository>
    </repositories>

    <dependencyManagement />

    <dependencies />

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-project-info-reports-plugin</artifactId>
                    <version>3.5.0</version>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-deploy-plugin</artifactId>
                    <version>2.8.2</version>
                    <dependencies>
                        <dependency>
                            <groupId>com.jcraft</groupId>
                            <artifactId>jsch</artifactId>
                            <version>0.1.55</version>
                        </dependency>
                        <dependency>
                            <groupId>org.apache.maven.wagon</groupId>
                            <artifactId>wagon-ssh</artifactId>
                            <version>3.5.3</version>
                        </dependency>

                    </dependencies>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-site-plugin</artifactId>
                    <version>3.12.1</version>
                    <executions>
                        <execution>
                            <id>attach-descriptor</id>
                            <goals>
                                <goal>attach-descriptor</goal>
                            </goals>
                        </execution>
                    </executions>
                    <dependencies>
                        <dependency>
                            <groupId>com.jcraft</groupId>
                            <artifactId>jsch</artifactId>
                            <version>0.1.55</version>
                        </dependency>
                        <dependency>
                            <groupId>org.apache.maven.wagon</groupId>
                            <artifactId>wagon-ssh</artifactId>
                            <version>3.5.3</version>
                        </dependency>
                        <dependency>
                            <groupId>org.apache.maven.doxia</groupId>
                            <artifactId>doxia-module-markdown</artifactId>
                            <version>1.12.0</version>
                        </dependency>
                        <dependency>
                            <groupId>org.apache.maven.doxia</groupId>
                            <artifactId>doxia-core</artifactId>
                            <version>1.12.0</version>
                        </dependency>
                    </dependencies>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-javadoc-plugin</artifactId>
                    <version>3.6.3</version>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.8.1</version>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-source-plugin</artifactId>
                    <version>3.3.0</version>
                </plugin>

                <plugin>
                    <groupId>org.jvnet.jaxb2.maven2</groupId>
                    <artifactId>maven-jaxb2-plugin</artifactId>
                    <version>0.14.0</version>
                </plugin>

            </plugins>
        </pluginManagement>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <configuration>
                    <tagNameFormat>@{project.version}</tagNameFormat>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-enforcer-plugin</artifactId>
                <version>3.0.0-M2</version>
                <executions>
                    <execution>
                        <id>enforce-maven</id>
                        <goals>
                            <goal>enforce</goal>
                        </goals>
                        <configuration>
                            <rules>
                                <requireMavenVersion>
                                    <version>3.0</version>
                                </requireMavenVersion>
                            </rules>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <profiles />

</project>
