diff --git a/build.gradle b/build.gradle index a07ca1a..59a862e 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,6 @@ final def pkgLabels = ['java', 'kotlin', 'annotation', 'processor', 'semantic', sourceCompatibility = 1.8 targetCompatibility = 1.8 -[compileJava, compileTestJava]*.options*.encoding = 'UTF-8' repositories { mavenLocal() @@ -53,6 +52,10 @@ dependencies { testImplementation 'org.testng:testng:6.14.3' } +tasks.withType(JavaCompile) { + options.encoding = 'UTF-8' +} + pmd { ruleSetFiles = files("config/pmd.xml") ruleSets = [] diff --git a/docs/README.html b/docs/README.html index cf79f94..1235a99 100644 --- a/docs/README.html +++ b/docs/README.html @@ -99,7 +99,6 @@ code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warni
  • Kotlin