I have overwitten processResources in my build script in order to get all resources stored in the “resources” subdirectory in the created jar.
processResources {
from "$projectDir/src/main/resources"
into "$destinationDir/resources"
}
In gradle 1.7 it was working fine. Now trying gradle 1.10, the resources are copied in the destinationDir directory and I find them in the root directory in the jar.