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 c5f5229 commit 0e30274Copy full SHA for 0e30274
.travis.yml
@@ -1,10 +1,17 @@
1
sudo: false
2
-language: java
3
-jdk:
4
-- oraclejdk8
+language: shell
+os: windows
+
5
cache:
6
directories:
7
- - $HOME/.m2
+ - $HOME/.m2
8
+ - /c/bin
9
-after_success:
10
-- bash <(curl -s https://codecov.io/bash)
+before_install:
11
+ - echo $HOME
12
+ - choco install jdk8 -params 'installdir=c:\\bin\\jdk' -y
13
+ - choco install maven -params 'installdir=c:\\bin\\mvn' --version 3.6.0 -y
14
+ - export JAVA_HOME=${JAVA_HOME:-/c/bin/jdk}
15
+ - echo $JAVA_HOME
16
+script:
17
+ mvn install -P -jdeps
0 commit comments