From 25689c4f6894ecdbf6c3bf4beff8ba0a54219af7 Mon Sep 17 00:00:00 2001 From: Dom Garguilo Date: Tue, 2 Jun 2026 12:32:39 -0400 Subject: [PATCH 1/5] Update parent, java versions. remove maven min Align the parent pom version with main accumulo repo (37) Align java build version min with main accumulo repo (21) Remove min maven version since its updated in the parent pom as of parent pom v36 --- pom.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index ad6d9739..e055a8f6 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ org.apache apache - 31 + 37 org.apache.accumulo accumulo-testing @@ -43,8 +43,7 @@ true .+-SNAPSHOT,(?i).*(alpha|beta)[0-9.-]*,(?i).*[.-](m|rc)[0-9]+ - 17 - 3.9 + 21 2021-12-15T00:00:00Z From ad19ff63afc85a578086242a1529234a9cc32040 Mon Sep 17 00:00:00 2001 From: Dom Garguilo Date: Tue, 2 Jun 2026 13:09:57 -0400 Subject: [PATCH 2/5] bump deps to match main accumulo repo --- pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index e055a8f6..3bfdb434 100644 --- a/pom.xml +++ b/pom.xml @@ -127,12 +127,12 @@ org.codehaus.mojo versions-maven-plugin - 2.16.1 + 2.21.0 com.mycila license-maven-plugin - 4.3 + 5.0.0 @@ -195,7 +195,7 @@ com.github.ekryd.sortpom sortpom-maven-plugin - 3.3.0 + 4.0.0 false false @@ -212,7 +212,7 @@ net.revelc.code.formatter formatter-maven-plugin - 2.23.0 + 2.29.0 src/build/eclipse-codestyle.xml LF @@ -226,7 +226,7 @@ net.revelc.code impsort-maven-plugin - 1.9.0 + 1.13.0 true java.,javax.,jakarta.,org.,com. From 8d38e307254e55aa37e02c1df541ae88ea15b205 Mon Sep 17 00:00:00 2001 From: Dom Garguilo Date: Tue, 2 Jun 2026 13:16:36 -0400 Subject: [PATCH 3/5] replace deprecated prop --- .../apache/accumulo/testing/randomwalk/concurrent/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java index c6978519..901e8e96 100644 --- a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java +++ b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java @@ -75,7 +75,7 @@ static Setting s(Property property, long min, long max) { s(Property.TSERV_THREADCHECK, 100, 10000), s(Property.TSERV_MINTHREADS, 1, 100), s(Property.TSERV_SESSION_MAXIDLE, 100, 5 * 60 * 1000), - s(Property.TSERV_WAL_SORT_BUFFER_SIZE, 1024 * 1024, 1024 * 1024 * 1024L), + s(Property.GENERAL_SERVER_WAL_SORT_BUFFER_SIZE, 1024 * 1024, 1024 * 1024 * 1024L), s(Property.TSERV_WAL_BLOCKSIZE, 1024 * 1024,1024 * 1024 * 1024 * 10L), s(Property.MANAGER_BULK_TIMEOUT, 10, 600), s(Property.MANAGER_RECOVERY_DELAY, 0, 100), From 610331b2efabb934ecf68ef0d29b6b93004e5709 Mon Sep 17 00:00:00 2001 From: Dom Garguilo Date: Tue, 2 Jun 2026 13:34:30 -0400 Subject: [PATCH 4/5] Add block to pull snapshots to pom --- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pom.xml b/pom.xml index 3bfdb434..39d857f9 100644 --- a/pom.xml +++ b/pom.xml @@ -120,6 +120,19 @@ test + + + + false + + + true + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + + From 34d6bf9d8ee6af50dff893a150f6444a9e4fc968 Mon Sep 17 00:00:00 2001 From: Dom Garguilo Date: Tue, 2 Jun 2026 13:39:16 -0400 Subject: [PATCH 5/5] Update GitHub Actions to align with main accumulo repo --- .github/workflows/maven.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index abe01cc1..32f0cb3e 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -38,12 +38,12 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Set up JDK 17 - uses: actions/setup-java@v4 + - uses: actions/checkout@v6 + - name: Set up JDK 21 + uses: actions/setup-java@v5 with: distribution: adopt - java-version: 17 + java-version: 21 cache: 'maven' - name: Build with Maven (${{ matrix.profile.name }}) run: mvn -B -V -e -ntp "-Dstyle.color=always" ${{ matrix.profile.args }} @@ -51,21 +51,21 @@ jobs: MAVEN_OPTS: -Djansi.force=true - name: Upload unit test results if: ${{ failure() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: surefire-reports-${{ matrix.profile.name }} path: ./**/target/surefire-reports/ if-no-files-found: ignore - name: Upload integration test results if: ${{ failure() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: failsafe-reports-${{ matrix.profile.name }} path: ./**/target/failsafe-reports/ if-no-files-found: ignore - name: Upload mini test logs if: ${{ failure() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: mini-tests-logs-${{ matrix.profile.name }} path: ./**/target/**/mini-tests/**/logs/