You can just configure processResources directly. sourceSets.main.resources will want everything to be in a directory and it can be bad to include your project root as an input directory.
processResources {
from("extra")
}
You can just configure processResources directly. sourceSets.main.resources will want everything to be in a directory and it can be bad to include your project root as an input directory.
processResources {
from("extra")
}