This commit is contained in:
Erik C. Thauvin 2019-07-30 21:16:53 -07:00
parent ee1d28a7b9
commit 6d48ec6203
2 changed files with 30 additions and 32 deletions

View file

@ -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 = []