Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions .github/workflows/maven-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4
with:
ff-maven: "4.0.0-beta-3" # Maven version for fail-fast-build
maven-matrix: '[ "4.0.0-beta-3" ]'
ff-maven: "4.0.0-beta-5" # Maven version for fail-fast-build
maven-matrix: '[ "4.0.0-beta-5" ]'
jdk-matrix: '[ "17", "21" ]'
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,16 @@ under the License.
</distributionManagement>

<properties>
<mavenVersion>4.0.0-beta-3</mavenVersion>
<mavenVersion>4.0.0-beta-5</mavenVersion>
<javaVersion>17</javaVersion>
<guavaVersion>33.2.1-jre</guavaVersion>
<guiceVersion>6.0.0</guiceVersion>
<slf4jVersion>2.0.13</slf4jVersion>
<version.maven-invoker-plugin>3.7.0</version.maven-invoker-plugin>
<version.maven-plugin-testing>4.0.0-beta-1</version.maven-plugin-testing>
<version.maven-plugin-testing>4.0.0-beta-2-SNAPSHOT</version.maven-plugin-testing>
<version.maven-plugin-tools>4.0.0-beta-1</version.maven-plugin-tools>
<version.maven-site-plugin>4.0.0-M16</version.maven-site-plugin>
<version.maven-fluido-skin>2.0.0-M11</version.maven-fluido-skin>
<project.build.outputTimestamp>2024-06-26T08:19:25Z</project.build.outputTimestamp>
</properties>

Expand Down Expand Up @@ -119,6 +121,12 @@ under the License.
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-api-impl</artifactId>
<version>${mavenVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
Expand Down