>From Murtadha Hubail <[email protected]>: Murtadha Hubail has submitted this change. ( https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18647 )
Change subject: [NO ISSUE][OTH] Update netty dependency version ...................................................................... [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]> --- M asterixdb/asterix-cloud/pom.xml M hyracks-fullstack/pom.xml 2 files changed, 78 insertions(+), 1 deletion(-) Approvals: Murtadha Hubail: Looks good to me, but someone else must approve Michael Blow: Looks good to me, approved Jenkins: Verified; Verified Objections: Anon. E. Moose #1000171: Violations found diff --git a/asterixdb/asterix-cloud/pom.xml b/asterixdb/asterix-cloud/pom.xml index b10929f..6839367 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 51bdd2f..20c3e21 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> -- To view, visit https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18647 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: Ic94d5a260c0b3ac3ed7df29d7b473a2a20d32e7c Gerrit-Change-Number: 18647 Gerrit-PatchSet: 3 Gerrit-Owner: Murtadha Hubail <[email protected]> Gerrit-Reviewer: Anon. E. Moose #1000171 Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]> Gerrit-Reviewer: Murtadha Hubail <[email protected]> Gerrit-MessageType: merged
