Skip to content

Instantly share code, notes, and snippets.

@mashimom
Created March 27, 2015 18:54
Show Gist options
  • Save mashimom/5f32c6985acdb1b1e5ac to your computer and use it in GitHub Desktop.
Save mashimom/5f32c6985acdb1b1e5ac to your computer and use it in GitHub Desktop.
Create Javadocs jar
task javadocsJar(type: Jar, dependsOn:javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocsJar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment