Skip to content

Instantly share code, notes, and snippets.

@senoritadeveloper01
Created January 25, 2021 17:32
Show Gist options
  • Save senoritadeveloper01/1430e09ba7f8d14714c0d1bfee978304 to your computer and use it in GitHub Desktop.
Save senoritadeveloper01/1430e09ba7f8d14714c0d1bfee978304 to your computer and use it in GitHub Desktop.
zimbra extension pom distribution file
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>jar-with-dependencies</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<unpack>true</unpack>
<scope>runtime</scope>
<unpackOptions>
<excludes>
<exclude>**/*.properties</exclude>
</excludes>
</unpackOptions>
</dependencySet>
</dependencySets>
</assembly>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment