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 431dfb4aaf [NO ISSUE][OTH] Update netty dependency version
431dfb4aaf is described below
commit 431dfb4aaf350c5810b8f901f9fc9224b096610d
Author: Murtadha Hubail <[email protected]>
AuthorDate: Tue Aug 13 17:26:17 2024 +0300
[NO ISSUE][OTH] Update netty dependency version
- user model changes: no
- storage format changes: no
- interface changes: no
Details:
- Updated netty dependency version to 4.1.112.
Change-Id: Ic94d5a260c0b3ac3ed7df29d7b473a2a20d32e7c
Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18647
Integration-Tests: Jenkins <[email protected]>
Tested-by: Jenkins <[email protected]>
Reviewed-by: Murtadha Hubail <[email protected]>
Reviewed-by: Michael Blow <[email protected]>
---
asterixdb/asterix-cloud/pom.xml | 55 +++++++++++++++++++++++++++++++++++++++++
hyracks-fullstack/pom.xml | 2 +-
2 files changed, 56 insertions(+), 1 deletion(-)
diff --git a/asterixdb/asterix-cloud/pom.xml b/asterixdb/asterix-cloud/pom.xml
index b10929f324..68393672e5 100644
--- a/asterixdb/asterix-cloud/pom.xml
+++ b/asterixdb/asterix-cloud/pom.xml
@@ -135,6 +135,61 @@
<async>true</async>
</configuration>
</execution>
+ <execution>
+ <id>azurite</id>
+ <phase>${azurite.stage}</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <!--suppress UnresolvedMavenProperty -->
+
<executable>${project.build.directory}/npm/node_modules/.bin/azurite-blob</executable>
+
<workingDirectory>${project.build.directory}</workingDirectory>
+ <environmentVariables>
+
<PATH>${project.build.directory}/npm/node</PATH>
+ </environmentVariables>
+ <arguments>
+ <argument>--blobPort</argument>
+ <argument>15055</argument>
+ <argument>--location</argument>
+
<argument>${project.build.directory}/azurite</argument>
+ <argument>--debug</argument>
+
<argument>${project.build.directory}/azurite/logs/azurite-debug.log</argument>
+ </arguments>
+ <async>true</async>
+
<outputFile>${project.build.directory}/azurite/logs/azurite.log</outputFile>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>com.github.eirslett</groupId>
+ <artifactId>frontend-maven-plugin</artifactId>
+ <version>1.13.4</version>
+ <configuration>
+ <nodeVersion>v14.15.4</nodeVersion>
+ <npmVersion>6.14.11</npmVersion>
+ <workingDirectory>target/npm</workingDirectory>
+ <installDirectory>target/npm</installDirectory>
+ </configuration>
+ <executions>
+ <execution>
+ <id>install node and yarn</id>
+ <goals>
+ <goal>install-node-and-npm</goal>
+ </goals>
+ <phase>${azurite.npm.install.stage}</phase>
+ </execution>
+ <execution>
+ <id>azurite blob</id>
+ <phase>${azurite.install.stage}</phase>
+ <goals>
+ <goal>npm</goal>
+ </goals>
+ <configuration>
+ <arguments>install azurite</arguments>
+ </configuration>
+ </execution>
</executions>
</plugin>
</plugins>
diff --git a/hyracks-fullstack/pom.xml b/hyracks-fullstack/pom.xml
index 51bdd2fb2c..20c3e21c8c 100644
--- a/hyracks-fullstack/pom.xml
+++ b/hyracks-fullstack/pom.xml
@@ -75,7 +75,7 @@
<snappy.version>1.1.10.5</snappy.version>
<jackson.version>2.14.3</jackson.version>
<jackson-databind.version>${jackson.version}</jackson-databind.version>
- <netty.version>4.1.101.Final</netty.version>
+ <netty.version>4.1.112.Final</netty.version>
<asm.version>9.3</asm.version>
<implementation.title>Apache Hyracks and Algebricks -
${project.name}</implementation.title>