<assembly
  xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">

  <id>assembly</id>

  <formats>
    <format>zip</format>
  </formats>

  <!--
  Set these to false or the zipped content will
  include even the base directory.
  -->
  <includeBaseDirectory>false</includeBaseDirectory>
  <fileSets>
    <fileSet>
      <outputDirectory>\</outputDirectory>
      <!--
      List of files and directories that are excluded from archival/zip.
      -->
      <excludes>
        <exclude>target/</exclude>
        <exclude>.gitignore</exclude>
      </excludes>
    </fileSet>
  </fileSets>

</assembly>
