Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-client/pull/188#discussion_r140661789
--- Diff: .travis.yml ---
@@ -0,0 +1,14 @@
+dist: trusty
+
+os: linux
+
+install: true
+
+cache:
+ directories: [ $HOME/.m2 ]
+
+language: java
+
+script:
+ - mvn install -DskipTests=true -Drat.skip=true -Dmaven.javadoc.skip=true
-B -V
--- End diff --
As with apache/incubator-guacamole-server#110, I'm not confident Travis CI
is a good choice. Depending on the result of discussion, if we do choose to go
with Travis, skipping parts of the build shouldn't be done, especially tests
and the RAT check. Catching test failures is one of the key points of using CI.
---