This is an automated email from the ASF dual-hosted git repository.
rgoers pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/release-2.x by this push:
new 372e035 Try to fix travis build again
372e035 is described below
commit 372e0355c8fff95dda387e3b1b41699b111fcebf
Author: Ralph Goers <[email protected]>
AuthorDate: Thu Nov 21 14:44:04 2019 -0700
Try to fix travis build again
---
.travis-toolchains.xml | 2 +-
.travis.yml | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.travis-toolchains.xml b/.travis-toolchains.xml
index c8c9718..b2cbf62 100644
--- a/.travis-toolchains.xml
+++ b/.travis-toolchains.xml
@@ -47,7 +47,7 @@
<vendor>oracle</vendor>
</provides>
<configuration>
- <jdkHome>/home/travis/oraclejdk11</jdkHome>
+ <jdkHome>/usr/local/lib/jvm/openjdk11</jdkHome>
</configuration>
</toolchain>
</toolchains>
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index eabeb80..5debe1a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,7 +13,7 @@
language: java
dist: trusty
jdk:
- - oraclejdk11
+ - openjdk11
env:
global:
@@ -26,13 +26,13 @@ before_cache:
- rm -rf $HOME/.m2/repository/org/apache/logging/log4j
install:
- - jdk_switcher use openjdk7
+ - jdk_switcher use openjdk8
- mvn -t .travis-toolchains.xml install -DskipTests=true
-Dmaven.javadoc.skip=true -B -V
script:
- - jdk_switcher use openjdk7
+ - jdk_switcher use openjdk8
- mvn -t .travis-toolchains.xml test -B -V
after_success:
- - jdk_switcher use openjdk7
+ - jdk_switcher use openjdk8
- mvn -t .travis-toolchains.xml -pl !log4j-bom jacoco:prepare-agent test
jacoco:report coveralls:report -B -V