This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/master by this push:
new 18341682c STORM-3999 - Add Java 21 to Build Matrix
18341682c is described below
commit 18341682ce90976c173ecf9ac68582b1626bda8a
Author: Richard Zowalla <[email protected]>
AuthorDate: Thu Nov 9 16:16:06 2023 +0100
STORM-3999 - Add Java 21 to Build Matrix
---
.github/workflows/maven.yaml | 2 +-
pom.xml | 11 +++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index a426d9b69..9c11bdeb3 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
- java: [ 11, 17 ]
+ java: [ 11, 17, 21 ]
module: [ Client, Server, Core, External, Check-Updated-License-Files,
Integration-Test ]
experimental: [false]
fail-fast: false
diff --git a/pom.xml b/pom.xml
index 0efd4eb0b..2e5de3f03 100644
--- a/pom.xml
+++ b/pom.xml
@@ -157,6 +157,7 @@
<activation-version>1.1.1</activation-version>
<rocksdb-jni-version>8.5.4</rocksdb-jni-version>
<json-smart.version>2.5.0</json-smart.version>
+ <byte-buddy.version>1.14.9</byte-buddy.version>
<!-- see intellij profile below... This fixes an annoyance with
intellij -->
<provided.scope>provided</provided.scope>
@@ -1140,6 +1141,16 @@
<artifactId>avro</artifactId>
<version>1.11.3</version>
</dependency>
+ <dependency>
+ <groupId>net.bytebuddy</groupId>
+ <artifactId>byte-buddy</artifactId>
+ <version>${byte-buddy.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>net.bytebuddy</groupId>
+ <artifactId>byte-buddy-agent</artifactId>
+ <version>${byte-buddy.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>