From a6931dfb15f142036ee58975438a27aa12604355 Mon Sep 17 00:00:00 2001 From: "Pfifer, Justin" Date: Wed, 20 Jul 2016 13:14:25 -0700 Subject: [PATCH] Enable Travis CI Builds Added the Travis CI configuration to enable continous integration testing for common JDK version > 1.7. Move gpg signing to its own profile to avoid causing issues with the test, and integration-test phases. --- .travis.yml | 6 ++++++ pom.xml | 37 +++++++++++++++++++++++-------------- 2 files changed, 29 insertions(+), 14 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ebb7a2ac --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: java +jdk: + - openjdk7 + - oraclejdk7 + - oraclejdk8 +sudo: false \ No newline at end of file diff --git a/pom.xml b/pom.xml index a9c22878..194d8134 100644 --- a/pom.xml +++ b/pom.xml @@ -131,20 +131,6 @@ - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - org.apache.maven.plugins maven-surefire-plugin @@ -176,5 +162,28 @@ + + + publishing + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + + +