Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
java: [21, 24, 25, 26, '27-ea']
name: Build with Java ${{ matrix.java }}
name: Build with Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v5

Expand All @@ -25,9 +25,9 @@ jobs:
- name: Check Maven version and directory contents
shell: bash
run: |
mvn -v
./mvnw -v
echo "** ls **"
pwd && ls -l

- name: Build with Maven
run: mvn -B install --file pom.xml
run: ./mvnw -B install --file pom.xml
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.14/apache-maven-3.9.14-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@
</banDynamicVersions>
<banDuplicatePomDependencyVersions/>
<requireMavenVersion>
<version>3.9.0</version>
<version>[3.9,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${java.version}}</version>
<version>[${java.version},)</version>
</requireJavaVersion>
<requireReleaseDeps>
<onlyWhenRelease>true</onlyWhenRelease>
Expand Down
Loading