My project tree:
/project
|
|
| |
| |
| |
|
when I put only in the build.gradle file apply plugin 'war', it puts everything in the war file during assembly, except for the doc file from the directory/files
I read Gradle docs , so add
war{
from 'src/main/webapp/files'
}
to the build.gradle file, after that my war file has become larger in size, but the necessary file is not there.
How to add a file from a directory /filesto a war directory /files?
UPDATE
After adding this project to the multi-project build, the problem disappeared. I donβt know what the matter is.
source
share