<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"> <modelVersion>4.0.0</modelVersion> <groupId>edu.wisc.my.app.root</groupId> <artifactId>root-parent</artifactId> <packaging>pom</packaging> <version>1.3.0-SNAPSHOT</version> <name>MyUW ROOT parent</name> <url>https://git.doit.wisc.edu/myuw/my-root</url> <scm> <connection>scm:git:https://git.doit.wisc.edu/myuw/my-root.git</connection> <developerConnection>scm:git:https://git.doit.wisc.edu/myuw/my-root.git</developerConnection> <url>https://git.doit.wisc.edu/myuw/my-root</url> <tag>HEAD</tag> </scm> <modules> <module>myuw-error-valve</module> <module>myuw-root-webapp</module> </modules> <distributionManagement> <repository> <id>myuw-releases-artifactorydoit</id> <url>https://artifactorydoit.jfrog.io/artifactory/myuw-maven-local-release-cloud/</url> </repository> <snapshotRepository> <id>myuw-snapshots-artifactorydoit</id> <url>https://artifactorydoit.jfrog.io/artifactory/myuw-maven-local-snapshot-cloud/</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <localCheckout>true</localCheckout> <tagNameFormat>release-@{project.version}</tagNameFormat> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </build> </project>