gradle常见问题

1.gradle下载的依赖jar包存放在哪里?(Gradle store on local file system)

   https://stackoverflow.com/questions/10834111/gradle-store-on-local-file-system

task showMeCache << {
  configurations.compile.each { println it }
}

   

猜你喜欢

转载自herry.iteye.com/blog/2111010