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 a966961 commit 0043642Copy full SHA for 0043642
.travis.yml
@@ -1,9 +1,24 @@
1
language: java
2
3
+git:
4
+ quiet: true
5
+ submodules: false
6
+
7
jdk:
8
- openjdk8
9
- openjdk11
10
11
+# 2019-11-26, tatu: Let's try caching Maven dependencies
12
+cache:
13
+ directories:
14
+ - $HOME/.m2
15
16
+# Below this line is configuration for deploying to the Sonatype OSS repo
17
+# https://knowm.org/configure-travis-ci-to-deploy-snapshots/
18
+before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
19
+after_success:
20
+ - "mvn -B source:jar javadoc:jar deploy --settings target/travis/settings.xml"
21
22
# whitelist
23
branches:
24
only:
0 commit comments