Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix JDK Travis failures #127

Merged
merged 2 commits into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
language: java
before_install:
- echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import || true
- echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import --batch || true
matrix:
include:
- name: 'OpenJDK 7'
jdk: openjdk7
- name: 'OpenJDK 8'
jdk: openjdk8
- name: 'Oracle JDK 8'
jdk: oraclejdk8
- jdk: openjdk7
dist: trusty
- jdk: openjdk8
dist: xenial
- jdk: openjdk11
name: 'OpenJDK 11'
dist: xenial
- jdk: oraclejdk7
dist: precise
- jdk: oraclejdk8
dist: trusty
- jdk: oraclejdk11
dist: trusty
allow_failures:
- name: 'Oracle JDK 8'
- name: 'OpenJDK 7'
- name: 'OpenJDK 11'
- jdk: openjdk7
- jdk: oraclejdk7
install:
- mvn --settings .maven.xml install -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
after_success:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<version>0.8.5</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -240,4 +240,4 @@
</plugin>
</plugins>
</build>
</project>
</project>