Hi, I am new to gradle and hope on your help very much.
I have such hiearchy in my resources directory in java project build with gradle and i have to include only add directory to the war. Please, can someboby explain for me why next code has no effect??
A/
|--B
|--add
|--notAdd
processResources {
from("A/B"){
include 'add/**'
}
}