-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
Hello!
I have a header.txt file with ©
symbol in it. If I run licenseFormat task, this symbol is inserted as � in java source files.
build.gradle.kts configuration:
license {
header(file("license/HEADER.txt"))
charset("UTF-8")
newLine(false)
ext["year"] = "2018-" + Calendar.getInstance().get(Calendar.YEAR)
ext["name"] = "Alexey Sosnoviy <[email protected]>, Nikita Gryzlov <[email protected]>"
ext["project"] = "BSL Language Server"
exclude("**/*.properties")
exclude("**/*.xml")
exclude("**/*.json")
exclude("**/*.bsl")
exclude("**/*.os")
exclude("**/*.txt")
exclude("**/*.java.orig")
exclude("**/*.impl")
exclude("**/*.mockito.plugins.MockMaker")
}
HEADER.txt saved with UTF-8 encoding. plugin version 0.6.0
DJtheRedstoner