We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78c7729 commit 9c57741Copy full SHA for 9c57741
build.gradle
@@ -16,9 +16,9 @@ group = 'com.imsweb'
16
version = '1.16-SNAPSHOT'
17
description = 'Java client library for parsing x12 files'
18
19
-tasks.withType(JavaCompile) {
20
- options.encoding = 'UTF-8' // UTF-8 for all compilation tasks
21
- options.compilerArgs << "-Xlint:all" << "-Werror" // fail the build if there are compiler warnings
+tasks.withType(JavaCompile).configureEach {
+ options.encoding = 'UTF-8'
+ options.compilerArgs << "-Werror" << "-Xlint:-options"
22
}
23
24
java {
0 commit comments