Looking into a build.gradle file I noticed this task definition in the webModule:
task deployConf(type: Copy) {
from file('src')
include "com/company/app/**"
into "$cuba.tomcat.dir/conf/${modulePrefix}"
}
Sorry if this is a stupid question, but the conf directory purpose shouldn’t be to store configuration files only?
Because running that deployConf task will result in copying all source files of the web module under the conf directory, and this sounds a bit odd to me…
Thx
Paolo
thx