http://gradle.org/gradle-download/ 에서 최신 버전 2.6 선택하고 다운로드한다.


압푹 풀면 gradle-2.6 디렉토리를 path에 등록한다.


$ vi ~/.bash_profile


export GRADLE_HOME=/mydev/util/gradle-2.6

export PATH=$PATH:$GRADLE_HOME/bin


다시 설정을 읽는다.

$ source ~/.bash_profile



gradle이 정상적으로 실행되는지 확인한다.


$ gradle -v


------------------------------------------------------------

Gradle 2.5

------------------------------------------------------------


Build time:   2015-07-08 07:38:37 UTC

Build number: none

Revision:     093765bccd3ee722ed5310583e5ed140688a8c2b


Groovy:       2.3.10

Ant:          Apache Ant(TM) version 1.9.3 compiled on December 23 2013

JVM:          1.8.0_40 (Oracle Corporation 25.40-b25)

OS:           Mac OS X 10.9.4 x86_64



Spring 자바 프로젝트 하나 설정한다.






자바 프로젝트 홈 디렉토리에 접근하고, gradlew를 생성한다.

$ gradle wrapper --gradle-version 2.6


:wrapper


BUILD SUCCESSFUL


Total time: 3.996 secs


This build could be faster, please consider using the Gradle Daemon: http://gradle.org/docs/2.5/userguide/gradle_daemon.html



빌드를 진행한다.


$ ./gradlew build




idea 설정 파일을 생성한다. 

$ ./gradlew idea 



Posted by '김용환'
,