xvik / gradle-use-python-plugin

Use python modules in gradle build
https://xvik.github.io/gradle-use-python-plugin/
MIT License
68 stars 18 forks source link

Document and tests use old task declaration style #56

Closed PedroWitzel closed 1 year ago

PedroWitzel commented 1 year ago

After gradle 6, the preferred way of creating tasks is:

tasks.register("task_name", TaskType) {}

The old style task name(Type: TaskType) can still be found on the documentation and on tests.