Last active
December 1, 2018 08:40
-
-
Save schnell18/64b690311a5e46b5b421dbc6ed76eade to your computer and use it in GitHub Desktop.
Script show cache path
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
| apply plugin: 'java' | |
| repositories{ | |
| mavenCentral() | |
| } | |
| dependencies{ | |
| implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") | |
| } | |
| task showMeCache << { | |
| configurations.compile.each { println it } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment