FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

fix: java 21 compat by ez-plugins · Pull Request #47 · EzFramework/JavaQueryBuilder · GitHub

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .xml  (1) .yml  (2) All 2 file types selected
Only manifest files
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '25'
java-version: '21'
- name: Run Checkstyle
run: mvn --batch-mode checkstyle:check
- name: Annotate Checkstyle results
Expand All @@ -39,7 +39,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '25'
java-version: '21'
- name: Build with coverage
run: mvn --batch-mode clean verify
- name: Upload coverage to Codecov
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ '25' ]
java-version: [ '21', '25' ]
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand All @@ -28,14 +28,14 @@ jobs:
- name: Upload JAR artifact
uses: actions/upload-artifact@v7
with:
name: java-query-builder-jar
name: java-query-builder-jar-${{ matrix.java-version }}
path: target/*.jar

feature-tests:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ '25' ]
java-version: [ '21', '25' ]
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<url>https://github.com/EzFramework/JavaQueryBuilder</url>

<properties>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -52,8 +52,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<source>25</source>
<target>25</target>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
<plugin>
Expand Down
Loading

Back | FazBrowse Home | New Git URL