Skip to content

Instantly share code, notes, and snippets.

@up1
Last active February 10, 2016 08:25
Show Gist options
  • Select an option

  • Save up1/78bc992c0d0325145127 to your computer and use it in GitHub Desktop.

Select an option

Save up1/78bc992c0d0325145127 to your computer and use it in GitHub Desktop.
Android :: JDepend
apply plugin: 'jdepend'
...
task jdepend(type: JDepend, dependsOn: 'compileDebugSources') {
classesDir file('build/intermediates/classes/debug/myproject/package')
reports {
xml {
destination 'build/reports/jdepend.xml'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment