Skip to content

Instantly share code, notes, and snippets.

@mylesjao
Created May 16, 2014 01:59
Show Gist options
  • Save mylesjao/02b36b4e7477db518ee0 to your computer and use it in GitHub Desktop.
Save mylesjao/02b36b4e7477db518ee0 to your computer and use it in GitHub Desktop.
custom tasks for creating source jars
task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment