macOS安装Gradle环境

文章目录

说明

  • gradle8.5最高支持jdk21,如果使用jdk22建议使用gradle8.8以上版本

安装JDK

安装Gradle

  1. 下载Gradle,解压将其存放到资源java/env目录下

  2. 打开环境变量文档:

    bash 复制代码
    open ~/.bash_profile
  3. 修改文件内容(灵活修改)

bash 复制代码
# Java Environment
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-22.jdk/Contents/Home
# Gradle environment
export GRADLE_HOME=/Library/Java/env/gradle-8.5

# CLASSPATH: adding JAVA_HOME/lib/tools.jar and JAVA_HOME/lib/dt.jar if they exist
if [ -d "$JAVA_HOME/lib" ]; then
  export CLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar:.
fi

# PATH: add all necessary paths in one line
export PATH=$JAVA_HOME/bin:$GRADLE_HOME/bin:$PATH:.
  1. 保存变量配置:

    bash 复制代码
    source ~/.bash_profile
  2. 验证安装结果:

    bash 复制代码
    yang@MacdeMac-mini ~ % gradle -v             
    
    Welcome to Gradle 8.5!
    
    Here are the highlights of this release:
     - Support for running on Java 21
     - Faster first use with Kotlin DSL
     - Improved error and warning messages
    
    For more details see https://docs.gradle.org/8.5/release-notes.html
    
    
    ------------------------------------------------------------
    Gradle 8.5
    ------------------------------------------------------------
    
    Build time:   2023-11-29 14:08:57 UTC
    Revision:     28aca86a7180baa17117e0e5ba01d8ea9feca598
    
    Kotlin:       1.9.20
    Groovy:       3.0.17
    Ant:          Apache Ant(TM) version 1.10.13 compiled on January 4 2023
    JVM:          22.0.1 (Oracle Corporation 22.0.1+8-16)
    OS:           Mac OS X 14.7.1 x86_64
相关推荐
degree5207 小时前
全平台轻量浏览器推荐|支持Win/macOS/Linux,极速加载+隐私保护+扩展插件,告别广告与数据追踪!
windows·macos·电脑
冯浩(grow up)14 小时前
macos 安装nodepad++ (教程+安装包+报错后的解决方法)
macos
2501_928094651 天前
Ps 2025 图像编辑 Photoshop(Mac中文)
图像处理·macos·photoshop·ps
Magnetic_h2 天前
【iOS】锁的原理
笔记·学习·macos·ios·objective-c·cocoa·xcode
Cosmoshhhyyy2 天前
mac环境下安装git并配置密钥等
git·macos
肥肥呀呀呀2 天前
mac 安卓模拟器 blueStacks
macos
csdn_aspnet2 天前
如何在 MacOS 上安装 SQL Server
macos·sqlserver
共享家95273 天前
linux-数据链路层
linux·网络·macos
CZIDC4 天前
MacOS字体看起来比在 Windows 上更好?
macos
Cosmoshhhyyy4 天前
linux远程部署dify和mac本地部署dify
linux·运维·macos