Skip to content

Commit

Permalink
Merge pull request #93 from DataDog/jaime/travis_fix
Browse files Browse the repository at this point in the history
[travis-ci] trusty distribution no longer default - explicit
  • Loading branch information
truthbk authored Dec 11, 2019
2 parents 03786c9 + 86073dd commit f78bf28
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
dist: trusty
language: java
jdk:
- oraclejdk8
- openjdk7
- oraclejdk8
- oraclejdk9
- oraclejdk11

install: mvn install -DskipTests -Dgpg.skip
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<configuration>
<rules>
<requireJavaVersion>
<version>[1.7.0-0,1.9.0-0)</version>
<version>[1.7.0-0,1.9.0-0),[9.0.0,11.0.5]</version>
</requireJavaVersion>
</rules>
</configuration>
Expand All @@ -128,7 +128,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<version>3.8.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
Expand All @@ -137,7 +137,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>3.1.0</version>
<configuration>
<source>1.7</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down

0 comments on commit f78bf28

Please sign in to comment.