We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a99877 commit fc28153Copy full SHA for fc28153
.travis.yml
@@ -5,9 +5,12 @@ sudo: false
5
jdk:
6
- oraclejdk8
7
8
-install: mvn install -DskipTests
+install:
9
+ - export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
10
+ - mvn install -DskipTests
11
12
script:
13
14
- mvn verify
15
16
cache:
README.md
@@ -8,6 +8,11 @@
This Java project contains example code of how to use the Mapcode
Library.
+First, make sure you have the correct file encoding (UTF8) set for Java on your system.
+Include this environment variable in your `.profile` or `.bashrc`:
+
+ export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
To run the examples, simply execute:
17
18
mvn clean install
0 commit comments