Newer
Older
<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.2.2-SNAPSHOT</version>
<url>https://git.doit.wisc.edu/myuw/my-root</url>
<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>
<tag>HEAD</tag>
<module>myuw-error-valve</module>
<module>myuw-root-webapp</module>
<id>myuw-public-releases</id>
<url>https://artifacts.doit.wisc.edu/artifactory/myuw-public-releases/</url>
<snapshotRepository>
<id>myuw-public-snapshots</id>
<url>https://artifacts.doit.wisc.edu/artifactory/myuw-public-snapshots/</url>
</snapshotRepository>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>2.0.0-M1</version>
</dependency>
</dependencies>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
</configuration>
</plugin>