Skip to content

Instantly share code, notes, and snippets.

@STAR-ZERO
Created April 11, 2018 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save STAR-ZERO/9a4a76658a9f52428e27c36f3d9ff3fe to your computer and use it in GitHub Desktop.
Save STAR-ZERO/9a4a76658a9f52428e27c36f3d9ff3fe to your computer and use it in GitHub Desktop.
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation'. の警告で compile を使ってるライブラリを探すGradleタスク
task searchCompileDependencies() {
doLast {
configurations.find { it.name == 'compile' }?.dependencies?.each {
println "$it.group:$it.name"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment