Skip to content

Commit

Permalink
Bump JDK version to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuomo Ala-Vannesluoma committed Aug 16, 2023
1 parent 4634c7b commit 0115bc8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: always()
strategy:
matrix:
java: [ '11', '17' ]
java: [ '17' ]
runs-on: ubuntu-latest
steps:
- name: Check out
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Run build and unit tests
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Initialize CodeQL
Expand All @@ -82,7 +82,7 @@ jobs:
if: always()
strategy:
matrix:
java: [ '11', '17' ]
java: [ '17' ]
db: [ 'h2', 'mariadb', 'postgresql', 'mysql', 'sqlserver', 'db2', 'oracle' ]
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion nflow-examples/spring-boot/bare-minimum/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion nflow-examples/spring-boot/full-stack/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<module>nflow-metrics</module>
</modules>
<properties>
<jdk.version>11</jdk.version>
<jdk.version>17</jdk.version>
<jacocoArgLine></jacocoArgLine>
<surefire.forkcount>1C</surefire.forkcount>
<apache.cxf.version>4.0.2</apache.cxf.version>
Expand Down

0 comments on commit 0115bc8

Please sign in to comment.