This is an automated email from the ASF dual-hosted git repository.
mhubail pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git
The following commit(s) were added to refs/heads/master by this push:
new 72e69c6ebf [ASTERIXDB-3387][OTH] Unify org.ow2.asm version
72e69c6ebf is described below
commit 72e69c6ebfc3a88309b1729d3083bb81a583cf25
Author: Wail Alkowaileet <[email protected]>
AuthorDate: Thu May 9 10:14:37 2024 -0700
[ASTERIXDB-3387][OTH] Unify org.ow2.asm version
- user model changes: no
- storage format changes: no
- interface changes: no
Details:
Unify org.ow2.asm to use version 9.3
Change-Id: Id241c5d3ddb4f532d8a2eb023954beac2cc0c407
Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18277
Integration-Tests: Jenkins <[email protected]>
Tested-by: Jenkins <[email protected]>
Reviewed-by: Wail Alkowaileet <[email protected]>
Reviewed-by: Hussain Towaileb <[email protected]>
---
hyracks-fullstack/pom.xml | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/hyracks-fullstack/pom.xml b/hyracks-fullstack/pom.xml
index e82c5e1bcd..51bdd2fb2c 100644
--- a/hyracks-fullstack/pom.xml
+++ b/hyracks-fullstack/pom.xml
@@ -76,6 +76,7 @@
<jackson.version>2.14.3</jackson.version>
<jackson-databind.version>${jackson.version}</jackson-databind.version>
<netty.version>4.1.101.Final</netty.version>
+ <asm.version>9.3</asm.version>
<implementation.title>Apache Hyracks and Algebricks -
${project.name}</implementation.title>
<implementation.url>https://asterixdb.apache.org/</implementation.url>
@@ -473,6 +474,31 @@
<artifactId>json-smart</artifactId>
<version>2.4.11</version>
</dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>${asm.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm-commons</artifactId>
+ <version>${asm.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm-analysis</artifactId>
+ <version>${asm.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm-tree</artifactId>
+ <version>${asm.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm-util</artifactId>
+ <version>${asm.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>
<build>