Skip to content

Commit 1bc6866

Browse files
committed
Prepare for v3
1 parent 9a3921e commit 1bc6866

File tree

4 files changed

+7
-27
lines changed

4 files changed

+7
-27
lines changed

.github/workflows/check-build.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -83,31 +83,6 @@ jobs:
8383
path: ${{ env.PRIMARY_MAVEN_MODULE }}/target/screenshots
8484
if-no-files-found: ignore
8585

86-
# Ensure compatibility with Java 11
87-
# See https://github.com/xdev-software/chartjs-java-model/issues/14
88-
build-java-11:
89-
runs-on: ubuntu-latest
90-
timeout-minutes: 30
91-
steps:
92-
- uses: actions/checkout@v6
93-
94-
- name: Set up JDK
95-
uses: actions/setup-java@v5
96-
with:
97-
distribution: temurin
98-
java-version: 11
99-
100-
- name: Cache Maven
101-
uses: actions/cache@v5
102-
with:
103-
path: ~/.m2/repository
104-
key: ${{ runner.os }}-mvn-build-java-11-${{ hashFiles('**/pom.xml') }}
105-
restore-keys: |
106-
${{ runner.os }}-mvn-build-java-11-
107-
108-
- name: Build with Maven
109-
run: ./mvnw -B clean package -Dmaven.test.skip=true
110-
11186
checkstyle:
11287
runs-on: ubuntu-latest
11388
if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 3.0.0
2+
_Java 17 is now required_
3+
* Updated dependencies
4+
* Updated to Jackson v3 #477
5+
16
# 2.9.1
27
* Updated dependencies
38

chartjs-java-model-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</organization>
2121

2222
<properties>
23-
<javaVersion>11</javaVersion>
23+
<javaVersion>17</javaVersion>
2424
<maven.compiler.release>${javaVersion}</maven.compiler.release>
2525

2626
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

chartjs-java-model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</licenses>
4343

4444
<properties>
45-
<javaVersion>11</javaVersion>
45+
<javaVersion>17</javaVersion>
4646
<maven.compiler.release>${javaVersion}</maven.compiler.release>
4747

4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)