使用task 關鍵字來定義gradle 任務
例:建立乙個build.gradle
命名的檔案:
build.gradle命令列切換到包含 build.gradle 檔案的目錄,執行task hello
}
gradle -q hello
輸出為:
> gradle -q hellops:命令列加中hello world!
-q
的作用
q 是 quiet 的簡寫,意思是要安靜、乾淨的輸出。如果不加-q
則會輸出日誌。詳見日誌,下面是對比
還可以使用更簡便的定義方式:
build.gradle結果與dolast一致。task hello
<<
build.gradle執行task upper
<<
gradle -q upper
輸出
> gradle -q upperoriginal: my_name
upper
case: my_name
build.gradletask count
<<
}
> gradle -q count0123
build.gradle執行task hello
<<
task intro(dependson: hello)
<<
gradle -q intro
輸出
> gradle -q introhello world!i
'm gradle
build.gradle執行4.times
}
gradle -q task1
輸出
> gradle -q task1i'm task number 1
build.gradle執行task hello
<<
hello.dofirst
hello.dolast
hello
<<
gradle -q hello
輸出
> gradle -q hellohello venus
hello earth
hello mars
hello jupiter
build.gradle執行defaulttasks
'clean', 'run'
task clean
<<
task run
<<
task other
<<
gradle -q
輸出
> gradle -qdefault cleaning!default running!
Linux 基本命令指南
ls list l a h pwd print working directory cd change directory mkdir make directorylsla p 多層目錄 touch 建立檔案 cp copy r 複製資料夾,遞迴複製 mv move 移動,重新命名 rm remov...
git基本命令操作指南
clone到本地git clone address address為需要clone的位址git clone git status命令可以檢視檔案狀態 可不執行,只是用於檢視檔案狀態 git status git add 提交所有變化 a命令區分大小寫 git add git commit a m 內...
linux基本命令 2
1.chown 將指定檔案的擁有者改為指定的使用者或組,chown 選項 所有者 組 檔案.2.chmod 檔案所有者或特權使用者才能使用該功能來改變檔案訪問模式 增加許可權 刪除許可權 重新分配許可權 u所有者 g所在組 o其它組 a所有使用者 預設 chmod u x file 給file的所有...