Skip to content

Instantly share code, notes, and snippets.

@winteryoung
Created March 6, 2016 08:14
Show Gist options
  • Save winteryoung/64db40fccbbcb4e39b20 to your computer and use it in GitHub Desktop.
Save winteryoung/64db40fccbbcb4e39b20 to your computer and use it in GitHub Desktop.
uber jar - assembly plugin - assembly.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>javadoc</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>/target/dokka</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