일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- JPA
- 알고리즘
- 후기
- 에러
- Singleton
- 오라클
- 우아한테크코스
- 람다
- 카카오톡1차
- Eclipse
- 인강리뷰
- Design Pattern
- spring
- 인코딩
- 자바
- 독서
- Java
- math
- 디자인패턴
- javascript
- 회고
- study
- 공부
- 이펙티브자바
- 인프런
- 프로그래머스
- 독서리뷰
- 매핑
- Head First Design Pattern
- Oracle
- Today
- Total
Lee's Grow up
[Gradle] Window에 설치 Gradle 설치하기 본문
Gradle
Gradle
는 빌드 자동화 시스템으로, 빌드 툴인 Ant Builder
과 Groovy
스크립트 기반으로 구축
자세한 내용은 아래 위키를 참조하시길 바랍니다.
https://en.wikipedia.org/wiki/Gradle
Gradle - Wikipedia
Gradle is an open-source build-automation system that builds upon the concepts of Apache Ant and Apache Maven and introduces a Groovy-based domain-specific language (DSL) instead of the XML form used by Apache Maven for declaring the project configuration.
en.wikipedia.org
Gradle 설치하기
1. 다운로드
아래 그래들 공식 홈페이지에서 원하는 Releases를 complete
버전으로 다운로드 해주고, 원하는 위치에 압축을 풀어줍니다.
Gradle | Releases
Find binaries and reference documentation for current and past versions of Gradle.
gradle.org
2. 환경설정
자바의 JDK처럼 윈도우에서 gradle를 호출하기 쉽게 PATH를 설정해줍니다.
내PC -> 속성 -> 고급 시스템 설정 -> 고급 -> 환경변수 -> Path -> 편집 후 등록
여기서 등록은 %Gradle 설치경로%\bin 으로 등록해줍니다. ( ex : C:\gradle-5.6.4\bin )
위 과정까지 완료 되었다면 이제 cmd
(커맨드창) 을 열어주고 gradle -v
를 입력해줍니다.
위 사진과 같이 버전 정보가 표시되면 설치 및 환경변수 설정이 끝납니다.