You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2016/11/14 01:33:32 UTC

logging-log4j2 git commit: Travis CI: Package jars during the build so that the OSGi tests can use them.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master f9ff2d6f4 -> 543edab34


Travis CI: Package jars during the build so that the OSGi tests can use
them.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/543edab3
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/543edab3
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/543edab3

Branch: refs/heads/master
Commit: 543edab34cc78a23a30ede3b7a8732b0e9aee14d
Parents: f9ff2d6
Author: Gary Gregory <gg...@apache.org>
Authored: Sun Nov 13 17:33:29 2016 -0800
Committer: Gary Gregory <gg...@apache.org>
Committed: Sun Nov 13 17:33:29 2016 -0800

----------------------------------------------------------------------
 .travis.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/543edab3/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 3b4513d..942274c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,5 +16,7 @@ sudo: false
 jdk:
   - oraclejdk7
 
-after_success:
-  - mvn clean test jacoco:report coveralls:report
+# Package jars during the build so that the OSGi tests can use them.
+script:
+  - mvn clean package -DskipTests
+  - mvn test jacoco:report coveralls:report