gradle이 데몬으로 실행되어 있다면, 컴파일 속도가 엄청 빠를 수 있다.
org.gradle.daemon=true
처음 실행할 때는 12초이다.
$ gradle compileScala
Starting a new Gradle Daemon for this build (subsequent builds will be faster).
:compileJava UP-TO-DATE
:compileScala
BUILD SUCCESSFUL
Total time: 12.809 secs
gradle 데몬이 실행한 후 컴파일하면 1.9초에 컴파일이 완료된다.
$ gradle compileScala
:compileJava UP-TO-DATE
:compileScala UP-TO-DATE
BUILD SUCCESSFUL
Total time: 1.969 secs
'etc tools' 카테고리의 다른 글
gradle 2.9 - 50% 줄어든 컴파일 속도 (0) | 2015.11.26 |
---|---|
[git] Github의 ssh key 이슈 (0) | 2015.11.04 |
[gradle] compile 사용자 정의 버전 사용시 유의 사항 - 부제 (single quotation과 double quotation 차이) (0) | 2015.10.16 |
[gradle] mvn dependencies와 비슷한 기능 (0) | 2015.10.05 |
[capistrano] 배포 정책 (groups, sequence, parallel) (0) | 2015.10.01 |