You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
HikariCP/.travis.yml

38 lines
727 B
YAML

sudo: false
language: java
8 years ago
dist:
- trusty
before_script:
8 years ago
- if [[ "x$JDK" == *'x9'* ]]; then export MAVEN_SKIP_RC=true; fi
script:
- export JDK8_HOME=$(jdk_switcher home oraclejdk8)
- export JDK11_HOME=/usr/lib/jvm/java-11-oracle
- test -d "${JDK11_HOME}" || export JDK11_HOME=$(jdk_switcher home oraclejdk8)
before_cache:
# No sense in caching current build artifacts
- rm -rf $HOME/.m2/repository/com/zaxxer
8 years ago
cache:
directories:
- $HOME/.m2/repository
matrix:
fast_finish: true
include:
- jdk: oraclejdk8
Test Java 11 in Travis CI (#1311) * Bump pax.exam.version from 4.11.0 to 4.13.1 Bumps `pax.exam.version` from 4.11.0 to 4.13.1. Updates `pax-exam-container-native` from 4.11.0 to 4.13.1 Updates `pax-exam-junit4` from 4.11.0 to 4.13.1 Updates `pax-exam-link-assembly` from 4.11.0 to 4.13.1 Updates `pax-exam-link-mvn` from 4.11.0 to 4.13.1 Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump pax.url.version from 2.5.2 to 2.5.4 Bumps `pax.url.version` from 2.5.2 to 2.5.4. Updates `pax-url-aether` from 2.5.2 to 2.5.4 - [Release notes](https://github.com/ops4j/org.ops4j.pax.url/releases) - [Commits](https://github.com/ops4j/org.ops4j.pax.url/compare/url-2.5.2...url-2.5.4) Updates `pax-url-reference` from 2.5.2 to 2.5.4 - [Release notes](https://github.com/ops4j/org.ops4j.pax.url/releases) - [Commits](https://github.com/ops4j/org.ops4j.pax.url/compare/url-2.5.2...url-2.5.4) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump maven-javadoc-plugin from 2.10.4 to 3.0.1 Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 2.10.4 to 3.0.1. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-2.10.4...maven-javadoc-plugin-3.0.1) Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump maven-bundle-plugin from 3.3.0 to 4.1.0 Bumps maven-bundle-plugin from 3.3.0 to 4.1.0. Signed-off-by: dependabot[bot] <support@dependabot.com> * Bump maven-compiler-plugin from 3.7.0 to 3.8.0 Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.7.0 to 3.8.0. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.7.0...maven-compiler-plugin-3.8.0) Signed-off-by: dependabot[bot] <support@dependabot.com> * Test Java 11 in Travis CI * Bump jacoco-maven-plugin to 0.8.2 * Bump maven-surefire-plugin to 2.22.1 * Update felix framework to 6.0.1
6 years ago
- jdk: oraclejdk11
env:
- JDK=11
install: /bin/true
10 years ago
10 years ago
script:
- mvn package -Dmaven.javadoc.skip=true -V -B
after_success:
- bash <(curl -s https://codecov.io/bash)