Skip to content

Commit

Permalink
Merge 'fix-travis-build' into master
Browse files Browse the repository at this point in the history
Signed-off-by: Manfred Hanke <Manfred.Hanke@tngtech.com>
  • Loading branch information
hankem committed Aug 21, 2020
2 parents 0fbc8a0 + 4ce0ba6 commit dd4968f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ language: java
install: "mvn install -DskipTests=true"
script: "mvn -e clean test jacoco:report coveralls:report"
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
- openjdk9
- openjdk10
- openjdk11
- openjdk12
- openjdk13
- openjdk14
21 changes: 15 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
<email>moritz.prinz@tngtech.com</email>
<organization>TNG Technology Consulting</organization>
</developer>
<developer>
<name>Manfred Hanke</name>
<email>manfred.hanke@tngtech.com</email>
<organization>TNG Technology Consulting</organization>
</developer>
</developers>
<organization>
<name>TNG Technology Consulting</name>
Expand All @@ -57,16 +62,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -80,12 +85,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.2.0</version>
<configuration>
<source>${java.version}</source>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</version>
<version>0.8.5</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down Expand Up @@ -166,5 +174,6 @@
</dependencies>
<properties>
<slf4j.version>1.7.25</slf4j.version>
<java.version>1.8</java.version>
</properties>
</project>

0 comments on commit dd4968f

Please sign in to comment.