We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c9a5a commit 7a2167eCopy full SHA for 7a2167e
.travis.yml
@@ -1,8 +1,23 @@
1
language: java
2
3
+addons:
4
+ apt:
5
+ packages:
6
+ - openjdk-6-jdk
7
+
8
jdk:
9
+ - openjdk6
10
- oraclejdk8
11
- openjdk7
12
- openjdk8
13
14
+ install:
15
+ - echo "Downloading Maven 3.0";
16
+ - wget https://archive.apache.org/dist/maven/binaries/apache-maven-3.0-bin.zip || travis_terminate 1
17
+ - unzip -qq apache-maven-3.0-bin.zip || travis_terminate 1
18
+ - export M2_HOME=$PWD/apache-maven-3.0
19
+ - export PATH=$M2_HOME/bin:$PATH
20
+ - mvn -version
21
+ - mvn clean package install -DskipTests -Dgpg.skip
22
23
after_failure: cat /home/travis/build/browserstack/browserstack-local-java/target/surefire-reports/*
0 commit comments