You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by vr...@apache.org on 2016/01/14 03:04:58 UTC

incubator-apex-malhar git commit: APEXMALHAR-1975 Added group id to all malhar app packages

Repository: incubator-apex-malhar
Updated Branches:
  refs/heads/devel-3 2670d595b -> 8b37ee372


APEXMALHAR-1975 Added group id to all malhar app packages


Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/commit/8b37ee37
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/tree/8b37ee37
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/diff/8b37ee37

Branch: refs/heads/devel-3
Commit: 8b37ee37201489bf842a9bb9be8e0259dedb595c
Parents: 2670d59
Author: David Yan <da...@datatorrent.com>
Authored: Wed Jan 13 17:32:27 2016 -0800
Committer: David Yan <da...@datatorrent.com>
Committed: Wed Jan 13 17:34:18 2016 -0800

----------------------------------------------------------------------
 apps/pom.xml      | 5 +++--
 benchmark/pom.xml | 5 +++--
 demos/pom.xml     | 6 ++++--
 3 files changed, 10 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/8b37ee37/apps/pom.xml
----------------------------------------------------------------------
diff --git a/apps/pom.xml b/apps/pom.xml
index 21fa9f1..1d89b80 100644
--- a/apps/pom.xml
+++ b/apps/pom.xml
@@ -37,7 +37,7 @@
   </modules>
 
   <properties>
-    <datatorrent.apppackage.classpath>lib/*.jar</datatorrent.apppackage.classpath>
+    <apex.apppackage.classpath>lib/*.jar</apex.apppackage.classpath>
     <maven.deploy.skip>true</maven.deploy.skip>
     <maven.install.skip>true</maven.install.skip>
   </properties>
@@ -111,9 +111,10 @@
                 </archiverConfig>
                 <archive>
                   <manifestEntries>
-                    <Class-Path>${datatorrent.apppackage.classpath}</Class-Path>
+                    <Class-Path>${apex.apppackage.classpath}</Class-Path>
                     <DT-Engine-Version>${apex.core.version}</DT-Engine-Version>
                     <DT-App-Package-Name>${project.artifactId}</DT-App-Package-Name>
+                    <DT-App-Package-Group-Id>${project.groupId}</DT-App-Package-Group-Id>
                     <DT-App-Package-Version>${project.version}</DT-App-Package-Version>
                     <DT-App-Package-Display-Name>${project.name}</DT-App-Package-Display-Name>
                     <DT-App-Package-Description>${project.description}</DT-App-Package-Description>

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/8b37ee37/benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/benchmark/pom.xml b/benchmark/pom.xml
index 9672b9f..58adaf2 100644
--- a/benchmark/pom.xml
+++ b/benchmark/pom.xml
@@ -36,7 +36,7 @@
   <description>Benchmark applications package</description>
 
   <properties>
-    <datatorrent.apppackage.classpath>lib/*.jar</datatorrent.apppackage.classpath>
+    <apex.apppackage.classpath>lib/*.jar</apex.apppackage.classpath>
     <maven.deploy.skip>true</maven.deploy.skip>
     <skipTests>true</skipTests>
     <semver.plugin.skip>true</semver.plugin.skip>
@@ -103,9 +103,10 @@
               </archiverConfig>
               <archive>
                 <manifestEntries>
-                  <Class-Path>${datatorrent.apppackage.classpath}</Class-Path>
+                  <Class-Path>${apex.apppackage.classpath}</Class-Path>
                   <DT-Engine-Version>${apex.core.version}</DT-Engine-Version>
                   <DT-App-Package-Name>${project.artifactId}</DT-App-Package-Name>
+                  <DT-App-Package-Group-Id>${project.groupId}</DT-App-Package-Group-Id>
                   <DT-App-Package-Version>${project.version}</DT-App-Package-Version>
                   <DT-App-Package-Display-Name>${project.name}</DT-App-Package-Display-Name>
                   <DT-App-Package-Description>${project.description}</DT-App-Package-Description>

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/8b37ee37/demos/pom.xml
----------------------------------------------------------------------
diff --git a/demos/pom.xml b/demos/pom.xml
index a045fc1..e650ea2 100644
--- a/demos/pom.xml
+++ b/demos/pom.xml
@@ -33,7 +33,8 @@
   <name>Apache Apex Malhar (incubating) Demos</name>
 
   <properties>
-    <datatorrent.apppackage.classpath>lib/*.jar</datatorrent.apppackage.classpath>
+    <apex.apppackage.groupid>${groupId}</apex.apppackage.groupid>
+    <apex.apppackage.classpath>lib/*.jar</apex.apppackage.classpath>
     <semver.plugin.skip>true</semver.plugin.skip>
     <maven.deploy.skip>true</maven.deploy.skip>
   </properties>
@@ -105,8 +106,9 @@
                 </archiverConfig>
                 <archive>
                   <manifestEntries>
-                    <Class-Path>${datatorrent.apppackage.classpath}</Class-Path>
+                    <Class-Path>${apex.apppackage.classpath}</Class-Path>
                     <DT-Engine-Version>${apex.core.version}</DT-Engine-Version>
+                    <DT-App-Package-Group-Id>${apex.apppackage.groupid}</DT-App-Package-Group-Id>
                     <DT-App-Package-Name>${project.artifactId}</DT-App-Package-Name>
                     <DT-App-Package-Version>${project.version}</DT-App-Package-Version>
                     <DT-App-Package-Display-Name>${project.name}</DT-App-Package-Display-Name>