Skip to content

Instantly share code, notes, and snippets.

@kimjoar
Created August 23, 2013 10:37
Show Gist options
  • Save kimjoar/6317892 to your computer and use it in GitHub Desktop.
Save kimjoar/6317892 to your computer and use it in GitHub Desktop.
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<warSourceExcludes>**</warSourceExcludes>
<webResources>
<webResource>
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
<includes>
<include>web.xml</include>
</includes>
<targetPath>WEB-INF</targetPath>
<filtering>true</filtering>
</webResource>
<webResource>
<directory>${project.build.directory}/bekk-frontend</directory>
<targetPath>.</targetPath>
</webResource>
</webResources>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment