macOS
맥북에 그레이들(Gradle) 설치
Jaime.Lee
2019. 9. 27. 13:34
필자는 마우스 사용을 지양합니다. 따라서 앞으로의 모든 포스팅은 마우스 사용을 최소화 할 수 있는 CLI(Command Line Interface)를 활용할 예정입니다.
Gradle을 지난 몇 년 간 '그래들'이라고 읽었는데 원래 발음이 '그레이들'이란 것을 알고 엄청난 충격을 받았습니다. (지금 이 글을 읽으시는 분들 중에도 찔리는 분이 있으시겠죠?)
Gradle 설치
터미널 실행 후 아래 명령어를 입력하면 끝
▶︎ brew install gradle
설치 확인
▶︎ gradle --version
------------------------------------------------------------
Gradle 5.6.2
------------------------------------------------------------
Build time: 2019-09-05 16:13:54 UTC
Revision: 55a5e53d855db8fc7b0e494412fc624051a8e781
Kotlin: 1.3.41
Groovy: 2.5.4
Ant: Apache Ant(TM) version 1.9.14 compiled on March 12 2019
JVM: 1.8.0_221 (Oracle Corporation 25.221-b11)
OS: Mac OS X 10.14.6 x86_64
Gradle Completion 설치
쉘에서 gradle 명령을 사용할 때 자동완성을 지원(참조)
▶︎ brew install gradle-completion
gradle 입력 후 Tab
을 눌러 자동완성 기능 사용
▶︎ gradle build
build -- Assembles and tests this project.
buildDependents -- Assembles and tests this project and all projects that depend on it.
buildEnvironment -- Displays all buildscript dependencies declared in root project 'ch02-jpa-start1'.
buildNeeded -- Assembles and tests this project and all projects it depends on.