Non english path in copy

I have: utf8 file gradle.properties with systemProp.file.encoding=utf-8 utf8 file build.gradle with

from (“src/main/reports/Тест”) {

into “reports”

} but in war folder “Тест” don’t exist

It’s hard to say with so little/incomplete information, but your statement only copies the contents of Тест. You’d have to use something like ‘from(“src/main/reports”)’ or ‘into(“reports/Тест”)’.