Skip to content

Instantly share code, notes, and snippets.

@rladstaetter
Created February 3, 2014 19:06
Show Gist options
  • Save rladstaetter/8790146 to your computer and use it in GitHub Desktop.
Save rladstaetter/8790146 to your computer and use it in GitHub Desktop.
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>interface</id>
<formats>
<format>zip</format>
</formats>
<baseDirectory>ownstuff</baseDirectory>
<fileSets>
<fileSet>
<directory>${project.basedir}/interface/src/main/h</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>**/**</include>
</includes>
</fileSet>
</fileSets>
</assembly>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment