当前位置:   article > 正文

Mac安装Gradle以及配置本地仓储_mac gradle配置仓库

mac gradle配置仓库

这里以mac为例安装gradle,其实windows同理。

安装

使用Homebrew

  1. 在线安装homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 
  1. 安装gradle
brew install gradle

手动安装

  1. 先下载gradle,官网地址:https://gradle.org/releases/ 选择你需要安装的版本,然后解压到你的选择的目录下(这里以/usr/local/gradle为例)
  2. 配置gradle环境变量
  1. 编辑 .bash_profile:
  2. export GRADLE_HOME=/usr/local/gradle/gradle-6.0.1
  3. 更新 PATH环境变量(这里不要照抄):
  4. export PATH=$GRADLE_HOME/bin:$PATH
  5. 应用配置:
  6. source ~/.bash_profile

验证

  1. > gradle -v
  2. Welcome to Gradle 5.4.1!
  3. Here are the highlights of this release:
  4. - Run builds with JDK12
  5. - New API for Incremental Tasks
  6. - Updates to native projects, including Swift 5 support
  7. For more details see https://docs.gradle.org/5.4.1/release-notes.html
  8. ------------------------------------------------------------
  9. Gradle 5.4.1
  10. ------------------------------------------------------------
  11. Build time: 2019-04-26 08:14:42 UTC
  12. Revision: 261d171646b36a6a28d5a19a69676cd098a4c19d
  13. Kotlin: 1.3.21
  14. Groovy: 2.5.4
  15. Ant: Apache Ant(TM) version 1.9.13 compiled on July 10 2018
  16. JVM: 1.8.0_91 (Oracle Corporation 25.91-b14)
  17. OS: Mac OS X 10.14.6 x86_64

配置本地repository目录

  1. 添加GRADLE_USER_HOME环境变量,这里我们以复用maven仓库为例:
  1. vi ~/.bash_profile
  2. GRADLE_USER_HOME=/Users/caowg/.m2/repository
  3. export GRADLE_USER_HOME
  1. 使配置生效
source ~/.bash_profile
  1. 注意,如果安装了zsh
  1. 先vi ~/.zshrc
  2. 添加:source ~/.bash_profile
  3. 然后 source ~/.zshrc

如对您有帮助欢迎点赞,留言讨论,谢谢。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/842646
推荐阅读
相关标签
  

闽ICP备14008679号