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
4 changes: 2 additions & 2 deletions .github/workflows/ci-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 11, 17, 21]
java-version: [8, 11, 17, 21, 25]
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 11, 17, 21]
java-version: [8, 11, 17, 21, 25]
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Combine multiple requests to optimally utilise the network.

Article [Martin Fowler](https://martinfowler.com) [Request Batch](https://martinfowler.com/articles/patterns-of-distributed-systems/request-batch.html)

_**Compatible JDK 8, 11 and 17**_
_**Compatible JDK 8, 11, 17, 21 and 25**_

_**Compatible AWS JDK v1 >= 1.12**_

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ void testAddCallbackDefaultFailureCallbackIsNoOp() {
final boolean[] called = { false };
final ResponseFailEntry entry = mock(ResponseFailEntry.class);

listenableFuture.addCallback(successCallback -> called[0] = true);
listenableFuture.addCallback(callback -> called[0] = true);
listenableFuture.fail(entry);

assertThat(called[0], is(false));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ void before() {
.maximumPoolSize(10)
.queueUrl("http://localhost/000000000000/queue")
.build();

sqsTemplate = new AmazonSqsTemplate<>(amazonSQS, queueProperty, new RingBufferBlockingQueue<>(1024));
}

Expand Down
14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<maven.compiler.optimize>true</maven.compiler.optimize>

<!-- Dependencies -->
<lombok.version>1.18.38</lombok.version>
<lombok.version>1.18.42</lombok.version>
<logback.version>1.3.14</logback.version>
<mockito.version>4.11.0</mockito.version>
<junit.jupiter.version>5.10.2</junit.jupiter.version>
Expand All @@ -47,7 +47,7 @@
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
<sonar-maven-plugin.version>4.0.1.6619</sonar-maven-plugin.version>
<central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version>
</properties>
Expand Down Expand Up @@ -449,6 +449,16 @@
</properties>
</profile>

<profile>
<id>25</id>
<activation>
<jdk>25</jdk>
</activation>
<properties>
<java.version>25</java.version>
</properties>
</profile>

<profile>
<id>sonar</id>
<properties>
Expand Down