Skip to content

Instantly share code, notes, and snippets.

@schnell18
Last active December 1, 2018 08:40
Show Gist options
  • Select an option

  • Save schnell18/64b690311a5e46b5b421dbc6ed76eade to your computer and use it in GitHub Desktop.

Select an option

Save schnell18/64b690311a5e46b5b421dbc6ed76eade to your computer and use it in GitHub Desktop.
Script show cache path
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