1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 16:00:51 -07:00

locale tests

This commit is contained in:
stleary 2017-02-14 08:30:22 -06:00
parent df9c27c53f
commit 928179a1f3
4 changed files with 67 additions and 0 deletions

View file

@ -2,6 +2,12 @@ apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'jacoco'
tasks.withType(JavaCompile) {
// this subproject requires -parameters option
options.compilerArgs << '-parameters'
options.encoding = 'UTF-8'
}
sourceSets {
// Uncomment main if you have merged JSON-Java and JSON-Java-unit-test code
main