[Gradle]그래들 알아보기 3 - Command-Line Interface Basics
SW개발/Spring

[Gradle]그래들 알아보기 3 - Command-Line Interface Basics

https://docs.gradle.org/current/userguide/command_line_interface_basics.html

 

Command-Line Interface Basics

The command-line interface is the primary method of interacting with Gradle outside the IDE. Substitute ./gradlew (in macOS / Linux) or gradlew.bat (in Windows) for gradle in the following examples. Executing Gradle on the command line conforms to the foll

docs.gradle.org

 

Command-Line Interface Basics

명령어 라인 인터페이스는 IDE 외부에서 그래들을 이용하는데 기본 방법입니다.

 

 

 

마찬가지로 그래들 래퍼를 사용하는 것이 좋습니다.

명령어 라인에서 그래들을 사용하면 다음과 같은 구조를 따릅니다.

$ ./gradlew [taskName...] [--option-name...]

옵션이 태스크 이름 앞에 위치하는 것도 허용됩니다.

$ ./gradlew [--option-name...] [taskName...]

여러개의 태스크를 지정하고 싶다면 공백과 함께 입력하면 됩니다.

$ ./gradlew [taskName1 taskName2...] [--option-name...]

값을 허용하는 옵션은 옵션과 인수 사이에 =를 포함하거나 포함하지 않고 지정이 가능합니다. (=의 사용을 권장합니다.)

$ ./gradlew [...] --console=plain

많은 long-form 옵션은 동일한 short-option이 존재합니다. 

$ ./gradlew --help
$ ./gradlew -h

 

Command-line usage

다음의 섹션에서는 그래들 명령어 라인 인터페이스를 사용하는 방법입니다. 몇몇 플러그인은 그들만의 명령어가 존재합니다.

 

태스크 실행

루트 프로젝트의 taskName을 이용하여 태스크를 실행시킬 수 있습니다.

$ ./gradlew :taskName

그러면 모든 의존성이 싱글 TaskName에서 실행됩니다.

 

태스크에 옵션을 지정하기

태스크에 옵션을 지정하려면 taskName 뒤에 -- prefix와 함께 옵션을 지정합니다.

$ ./gradlew taskName --exampleOption=exampleValue

 

728x90