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.1.2-SNAPSHOT</version>
<scm>
<connection>scm:git:git@git.doit.wisc.edu:myuw/my-root.git</connection>
<developerConnection>scm:git:git@git.doit.wisc.edu:myuw/my-root.git</developerConnection>
<url>https://git.doit.wisc.edu/myuw/my-root</url>
</scm>
<module>myuw-error-valve</module>
<module>myuw-root-webapp</module>
<distributionManagement>
<snapshotRepository>
<id>code.doit-uw-snapshots</id>
<url>https://code.doit.wisc.edu/maven/content/repositories/public-snapshots/</url>
</snapshotRepository>
<repository>
<id>code.doit-uw-releases</id>
<url>https://code.doit.wisc.edu/maven/content/repositories/public-releases/</url>
<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>
</plugins>
</build>