Mac에서 Gradle 설치하기
Mac에서 Gradle 설치하는 방법은 homebrew를 이용하면 간단하다.
1. Homebrew 설치하기
Homebrew는 터미널에서 명령어 한 줄로 설치할 수 있다.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
지금 시점에서는 동작하는데 만약 동작하지 않는다면 다음 페이지를 참조하길 바란다.
2. Homebrew 이용해 gradle을 설치한다.
$ brew install gradle
gradle에는 Kotlin DSL이 들어가기 때문에 기본적으로 jdk가 설치된다.
$ brew install gradle
Running `brew update --preinstall`...
==> Auto-updated Homebrew!
..
==> Downloading https://ghcr.io/v2/homebrew/core/openjdk/manifests/17.0.1_1
..
==> Installing dependencies for gradle: openjdk
==> Installing gradle dependency: openjdk
==> Pouring openjdk--17.0.1_1.arm64_monterey.bottle.tar.gz
🍺 /opt/homebrew/Cellar/openjdk/17.0.1_1: 640 files, 306.2MB
..
..
Pruned 0 symbolic links and 8 directories from /opt/homebrew
3. 설치된 버전 확인하기
gradle -v 명령어를 이용해 설치된 버전을 확인할 수 있다.
$ gradle -v
------------------------------------------------------------
Gradle 7.3.3
------------------------------------------------------------
Build time: 2021-12-22 12:37:54 UTC
Revision: 6f556c80f945dc54b50e0be633da6c62dbe8dc71
Kotlin: 1.5.31
Groovy: 3.0.9
Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021
JVM: 17.0.1 (Homebrew 17.0.1+1)
OS: Mac OS X 12.0.1 aarch64
brew로 설치된 버전을 확인하려면 brew info gradle 을 사용하면 된다. 오른쪽에 *가 붙은 버전이 현재 설치된 버전이다.
$ brew info gradle
gradle: stable 7.3.3 (bottled)
Open-source build automation tool based on the Groovy and Kotlin DSL
https://www.gradle.org/
/opt/homebrew/Cellar/gradle/7.3.3 (11,111 files, 266.3MB) *
Poured from bottle on 2022-01-30 at 21:48:10
From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/gradle.rb
License: Apache-2.0
==> Dependencies
Required: openjdk ✔
==> Analytics
install: 38,240 (30 days), 142,105 (90 days), 559,122 (365 days)
install-on-request: 38,008 (30 days), 141,117 (90 days), 554,342 (365 days)
build-error: 0 (30 days)
반응형