Skip to content

Commit

Permalink
chore(travis): build on jdk8 and jdk11 (#27)
Browse files Browse the repository at this point in the history
This will ensure that even if we mainly target jdk8, the project also works with
jdk11

* Show maven version when building
* Add build status badge
* Update JDK requirements
  • Loading branch information
tbouffard authored May 3, 2020
1 parent ccd0e92 commit 86aec92
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: java
jdk: openjdk8
os: linux
dist: xenial
jdk:
- openjdk8
- openjdk11

cache:
directories:
Expand All @@ -13,4 +15,4 @@ branches:
- master

install: skip
script: cd java; ./mvnw verify
script: cd java; ./mvnw -V verify
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bpmn-layout-generators
# bpmn-layout-generators [![Build Status](https://travis-ci.com/process-analytics/bpmn-layout-generators.svg?branch=master)](https://travis-ci.com/process-analytics/bpmn-layout-generators)

Tools for generating missing BPMNDiagram elements in BPMN files

Expand Down
5 changes: 2 additions & 3 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

## Requirements

> JDK 8 (may work with higher versions, but this is not tested)
>
> JDK 8 or JDK 11
## Build

The project bundle a Maven Wrapper, so just run
The project bundles a Maven Wrapper, so just run
``` bash
./mvnw package
```

0 comments on commit 86aec92

Please sign in to comment.