<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"> <parent> <groupId>edu.wisc.my.app.root</groupId> <artifactId>root-parent</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>myuw-error-valve</artifactId> <packaging>jar</packaging> <name>MyUW ROOT lib</name> <dependencies> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-catalina</artifactId> <version>7.0.65</version> <scope>provided</scope> </dependency> </dependencies> <repositories> <repository> <id>code.doit-uw-releases</id> <url>https://code.doit.wisc.edu/maven/content/repositories/uw-releases/</url> </repository> </repositories> <build> <finalName>myuw-error-valve</finalName> </build> </project>