Skip to content

Instantly share code, notes, and snippets.

@ido-ran
Created January 24, 2018 13:27
Show Gist options
  • Save ido-ran/94e15806085bccc37790f979e4e29c12 to your computer and use it in GitHub Desktop.
Save ido-ran/94e15806085bccc37790f979e4e29c12 to your computer and use it in GitHub Desktop.
Maven assemblyDescriptor.xml
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>template</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.basedir}</directory>
<includes>
<include>conf/**/*</include>
<include>server/**/*</include>
<include>wrapper/**/*</include>
<include>install/**/*</include>
<include>webapps/**/*</include>
<!--<include>webapps/portal/**/*</include>
<include>webapps/root/**/*</include>-->
<!--<include>HP_ALM_11_50_Permanent_Unlimited.dat</include>-->
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
</fileSet>
</fileSets>
</assembly>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment