2015-05-16 59 views

回答

1

下加入~/.bashrc~/.bash_profile文件:

gradle() { 
     if [ -f ./gradlew ]; then 
       ./gradlew "[email protected]" 
     else 
       command gradle "[email protected]" 
     fi 
} 
+0

這是我目前使用的,但感覺這應該是建進入gradle,並可在例如'〜/ settings.gradle' – Armand

0

你可以安裝並使用gdubhttps://github.com/dougborg/gdub)。如果找不到該項目,將使用gradle包裝器,或者如果未找到,則使用全局安裝的gradle。

安裝它真的只是兩行代碼:

$ curl -sLo- http://get.bpkg.io | bash 
$ bpkg install dougborg/gdub -g 

而且使用這樣的:

$ gw build 
相關問題