Skip to content

Commit

Permalink
chore(build): Switch target release to Java 8 and added travis CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
berndruecker committed Mar 19, 2020
1 parent 0fcd886 commit 11827f4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: java

sudo: true

script:
- mvn clean package

cache:
directories:
- $HOME/.m2
jdk:
- openjdk11
os:
- linux

branches:
only:
- master
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<powermock.version>2.0.5</powermock.version>
<h2.version>1.4.197</h2.version>
<maven.javadoc.plugin.version>3.0.1</maven.javadoc.plugin.version>
<maven.compiler.release>8</maven.compiler.release>
</properties>

<modules>
Expand Down Expand Up @@ -62,7 +63,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down

0 comments on commit 11827f4

Please sign in to comment.