>From Wail Alkowaileet <[email protected]>: Wail Alkowaileet has submitted this change. ( https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18277 )
Change subject: [ASTERIXDB-3387][OTH] Unify org.ow2.asm version ...................................................................... [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]> --- M hyracks-fullstack/pom.xml 1 file changed, 47 insertions(+), 0 deletions(-) Approvals: Wail Alkowaileet: Looks good to me, but someone else must approve Hussain Towaileb: Looks good to me, approved Jenkins: Verified; Verified diff --git a/hyracks-fullstack/pom.xml b/hyracks-fullstack/pom.xml index e82c5e1..51bdd2f 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> -- To view, visit https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18277 To unsubscribe, or for help writing mail filters, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Change-Id: Id241c5d3ddb4f532d8a2eb023954beac2cc0c407 Gerrit-Change-Number: 18277 Gerrit-PatchSet: 2 Gerrit-Owner: Wail Alkowaileet <[email protected]> Gerrit-Reviewer: Hussain Towaileb <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Wail Alkowaileet <[email protected]> Gerrit-MessageType: merged
