Switch to tasks.register() to define custom tasks

This commit is contained in:
Tobi Schäfer 2024-06-15 23:06:35 +02:00
parent 87675fd6cd
commit 608fd695c4
Signed by: tobi
GPG key ID: 91FAE6FE2EBAC4C8
5 changed files with 11 additions and 11 deletions

View file

@ -15,7 +15,7 @@ processResources.enabled = false
processTestResources.enabled = false
test.enabled = false
task deps(type: Copy) {
tasks.register('deps', Copy) {
from sourceSets.main.runtimeClasspath
into 'lib'
}