You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2020/12/31 21:48:11 UTC

[mnemonic] branch master updated: MNEMONIC-581: Upgrade assembly and deploy plugins

This is an automated email from the ASF dual-hosted git repository.

garyw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git


The following commit(s) were added to refs/heads/master by this push:
     new aba3fe9  MNEMONIC-581: Upgrade assembly and deploy plugins
aba3fe9 is described below

commit aba3fe9a32c8cda829776610f3f1fead5c65c6cf
Author: Gary <ga...@apache.org>
AuthorDate: Wed Dec 30 22:56:23 2020 -0800

    MNEMONIC-581: Upgrade assembly and deploy plugins
    
    Signed-off-by: Gary <ga...@apache.org>
---
 bin/source-assembly.xml |  4 ++--
 pom.xml                 | 15 +++++++++++++--
 2 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/bin/source-assembly.xml b/bin/source-assembly.xml
index af625d4..9a23a41 100644
--- a/bin/source-assembly.xml
+++ b/bin/source-assembly.xml
@@ -20,9 +20,9 @@
 -->
 
 <assembly
-  xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
+  xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.1.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
   <id>src</id>
   <formats>
     <format>zip</format>
diff --git a/pom.xml b/pom.xml
index 8843906..25d9a28 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,6 +90,10 @@
     <module>mnemonic-computing-services</module>
     <module>mnemonic-query</module>
     <module>mnemonic-common</module>
+    <module>mnemonic-sessions</module>
+    <module>mnemonic-hadoop</module>
+    <module>mnemonic-spark</module>
+    <module>mnemonic-benches</module>
   </modules>
 
   <properties>
@@ -455,6 +459,11 @@
             </execution>
           </executions>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>3.0.0-M1</version>
+        </plugin>
 
       </plugins>
     </pluginManagement>
@@ -500,10 +509,12 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-assembly-plugin</artifactId>
-          <version>2.4</version>
+          <version>3.3.0</version>
           <configuration>
             <finalName>apache-mnemonic-${project.version}</finalName>
-            <descriptor>bin/source-assembly.xml</descriptor>
+            <descriptors>
+              <descriptor>bin/source-assembly.xml</descriptor>
+            </descriptors>
           </configuration>
         </plugin>
         <plugin>