You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by st...@apache.org on 2015/01/11 17:45:53 UTC

[09/19] incubator-slider git commit: SLIDER-655 POM for app-packages

SLIDER-655 POM for app-packages

Conflicts:
	app-packages/hbase/README.md


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

Branch: refs/heads/branches/branch-0.6
Commit: 8a4891ed265b705e852c73b88d1d31edf6f6962d
Parents: ef097d8
Author: Steve Loughran <st...@apache.org>
Authored: Wed Dec 3 18:18:07 2014 +0000
Committer: Steve Loughran <st...@apache.org>
Committed: Sat Jan 10 16:38:56 2015 +0000

----------------------------------------------------------------------
 app-packages/hbase/README.md |  7 +++---
 app-packages/pom.xml         | 46 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/8a4891ed/app-packages/hbase/README.md
----------------------------------------------------------------------
diff --git a/app-packages/hbase/README.md b/app-packages/hbase/README.md
index 2d52fc9..53c1bbe 100644
--- a/app-packages/hbase/README.md
+++ b/app-packages/hbase/README.md
@@ -31,17 +31,18 @@ with appropriate parameters.
 
 Command:
 
-    mvn clean package -Phbase-app-package -Dpkg.version=<version>
+    mvn clean package -Phbase-app-package -Dhbase.version=<version>
        -Dpkg.name=<file name of app tarball> -Dpkg.src=<folder location where the pkg is available>
 
 Example:
 
     mvn clean package -Phbase-app-package -Dpkg.version=0.98.5-hadoop2
-      -Dpkg.name=hbase-0.98.5-hadoop2-bin.tar.gz
+      -Dhbase.version=hbase-0.98.5-hadoop2-bin.tar.gz
       -Dpkg.src=/Users/user1/Downloads/0.98.5-hadoop2
 
 App package can be found in
-  app-packages/hbase/target/slider-hbase-app-package-${pkg.version}.zip
+
+    app-packages/hbase/target/slider-hbase-app-package-${slider.version}.zip
 
 ## OPTION - II 
 

http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/8a4891ed/app-packages/pom.xml
----------------------------------------------------------------------
diff --git a/app-packages/pom.xml b/app-packages/pom.xml
new file mode 100644
index 0000000..b02b79c
--- /dev/null
+++ b/app-packages/pom.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+  <parent>
+    <groupId>org.apache.slider</groupId>
+    <artifactId>slider</artifactId>
+    <version>0.61.0-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.slider.packages</groupId>
+  <artifactId>slider-app-packages</artifactId>
+  <packaging>pom</packaging>
+  <name>Slider Storm App Package</name>
+  <description>Slider Storm App Packages: Zip files containing applications that slider can deploy</description>
+  
+  <modules>
+    <module>hbase</module>
+    <module>accumulo</module>
+    <module>storm</module>
+  </modules>
+  
+    <build>
+    </build>
+
+    <dependencies>
+    </dependencies>
+
+  </project>
+  
\ No newline at end of file