Added .travis.yml, so to fix build issues on Github.
diff --git a/,travis.yml b/,travis.yml
new file mode 100644
index 0000000..4b07b6d
--- /dev/null
+++ b/,travis.yml
@@ -0,0 +1,36 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more

+# contributor license agreements.  See the NOTICE file distributed with

+# this work for additional information regarding copyright ownership.

+# The ASF licenses this file to You under the Apache License, Version 2.0

+# (the "License"); you may not use this file except in compliance with

+# the License.  You may obtain a copy of the License at

+#

+#     http://www.apache.org/licenses/LICENSE-2.0

+#

+# Unless required by applicable law or agreed to in writing, software

+# distributed under the License is distributed on an "AS IS" BASIS,

+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

+# See the License for the specific language governing permissions and

+# limitations under the License.

+

+language: java

+sudo: false

+

+addons:

+  apt:

+    packages:

+      - openjdk-6-jdk

+# use java 6 compatible maven version

+before_install:

+  - wget https://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip

+  - unzip -qq apache-maven-3.2.5-bin.zip

+  - export M2_HOME=$PWD/apache-maven-3.2.5

+  - export PATH=$M2_HOME/bin:$PATH

+

+jdk:

+  - openjdk6

+  - openjdk7

+  - oraclejdk8

+

+after_success:

+  - mvn clean cobertura:cobertura coveralls:report

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 55798e0..320db1d 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -61,6 +61,7 @@
       <action                        dev="ecki" type="add">Site: added security report</action>
       <action                        dev="markt" due-to="Felix Schumacher">Improve performance for large multi-part boundaries</action>
       <action issue="FILEUPLOAD-286" dev="jochen" due-to="maxxedev" due-to-email="maxxedev@gmail.com">Added the default character set to the DiskFileItem.</action>
+      <action dev="jochen" due-to="Pascal Schumacher">Added .travis.yml, to fix build issues on Github.</action>
     </release>
 
     <release version="1.3.3" description="Bugfix release for 1.3.3" date="2017-06-13">