Skip to content

Commit

Permalink
Add Java17 to ci pipelines (#557)
Browse files Browse the repository at this point in the history
* Add Java17 to ci pipelines
* Bump Lombok to 1.18.20
* Bump Jacoco plugin to 0.8.7
* Bump maven wrapper to v3.8.2
  • Loading branch information
abelsromero committed Oct 2, 2021
1 parent 1ff2e45 commit ea190ec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,27 @@ jobs:
name: Build
strategy:
fail-fast: false
max-parallel: 2
max-parallel: 4
matrix:
java:
- 8
- 11
- 17
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Cache dependencies
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-cache-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.1/apache-maven-3.8.1-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.2/apache-maven-3.8.2-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Bug Fixes::
Build / Infrastructure::

* Upgrade Asciidoctorj to v2.5.2 (#555)
* Support Java 17 (#557)

== v2.2.1 (2021-07-24)

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<asciidoctorj.version>2.5.2</asciidoctorj.version>
<jruby.version>9.2.17.0</jruby.version>
<maven.coveralls.plugin.version>4.3.0</maven.coveralls.plugin.version>
<maven.jacoco.plugin.version>0.8.6</maven.jacoco.plugin.version>
<maven.jacoco.plugin.version>0.8.7</maven.jacoco.plugin.version>
<maven.plugin.plugin.version>3.5</maven.plugin.plugin.version>
<maven.project.version>3.0.5</maven.project.version>
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
Expand Down Expand Up @@ -167,7 +167,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.18</version>
<version>1.18.20</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit ea190ec

Please sign in to comment.