In Gradle there is a task that is called via cmd with parameters, for example, gradle taskWithParameters -Pparametr1 = 1234
How to call this task from another task with parameters? (parameters are predefined, can be set in code)
In Gradle there is a task that is called via cmd with parameters, for example, gradle taskWithParameters -Pparametr1 = 1234
How to call this task from another task with parameters? (parameters are predefined, can be set in code)
Source: https://ru.stackoverflow.com/questions/544670/
All Articles