本文介绍了如何改变摇篮下载位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我开始学习gradle这个。
然而,当我建立与春季摇篮;它下载的依赖罐子
I am starting to learn gradle.However when I am building Spring with Gradle; it downloads the dependency jars to
C:\Users\UserName\.gradle
有没有什么办法可以指定摇篮到依赖罐子下载到特定的位置?
就像我可以在Maven的指定库中的位置。
Is there any way I can specify Gradle to download the dependency jars to a specific location?Just like I can specify repository location in Maven.
系统信息:
Windows 7的64位
摇篮1.0版
System information:Windows 7 64bitGradle version 1.0
推荐答案
您可以设置 GRADLE_USER_HOME
环境变量, gradle.user.home
系统属性,或 - gradle这个用户家里
命令行参数
You can set the GRADLE_USER_HOME
environment variable, gradle.user.home
system property, or --gradle-user-home
command line parameter.
这篇关于如何改变摇篮下载位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!