<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.1.10-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ROOT</artifactId> <packaging>war</packaging> <name>MyUW ROOT webapp</name> <build> <finalName>ROOT</finalName> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.3.0.M2</version> <configuration> <webApp> <baseResource implementation="org.eclipse.jetty.util.resource.ResourceCollection"> <resourcesAsCSV>src/main/webapp,${webapp.target.directory}</resourcesAsCSV> </baseResource> </webApp> </configuration> </plugin> </plugins> </build> </project>