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

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -