Skip to content

Instantly share code, notes, and snippets.

@lenards
Created July 21, 2010 20:33
Show Gist options
  • Save lenards/485076 to your computer and use it in GitHub Desktop.
Save lenards/485076 to your computer and use it in GitHub Desktop.
383 <plugin>
384 <artifactId>maven-war-plugin</artifactId>
385 <configuration>
386 <webappDirectory>${basedir}/war</webappDirectory>
387 <manifest>
388 <addDefaultImplementationEntries>true
389 </addDefaultImplementationEntries>
390 </manifest>
391 <webResources>
392 <resource>
393
<directory>${project.build.directory}/generated-webapp
394 </directory>
395 </resource>
396 </webResources>
397 <archive>
398 <manifestEntries>
399 <Build-Version>${BUILD_TAG}</Build-Version>
400 </manifestEntries>
401 </archive>
402 </configuration>
403 </plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment