Created
April 11, 2018 16:09
-
-
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タスク
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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