export - Gradle - Camel Case for task names - First character UPPER case -


i have seen few gradle / groovy docs , mention, can create task name this:

task kobalory {    // code here...  }  task noprint << {   // code here }  task titu (...) {     ... }  task dothisspecialthing {  ... } 

etc

does gradle provides way define task exported / global task if make first character of task name upper case, see below. know there's $gradle_home/init.d if have someglobalfile.gradle , define tasks there, you'll have free in gradle process i'm asking if change first character of task name upper case.

task kobalory {    // code here...  }  task noprint << {   // code here }  task titu (...) {     ... }  task dothisspecialthing {  ... } 

by convention, gradle task names start lowercase letter. technically, capitalization irrelevant.


Comments

Popular posts from this blog

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -