SLIDER-655 POM for app-packages
Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/54e09f92 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/54e09f92 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/54e09f92 Branch: refs/heads/feature/SLIDER-151_REST_API Commit: 54e09f92ae82cff3e96e3a6aedce8cefbb619eed Parents: 9438567 Author: Steve Loughran <[email protected]> Authored: Wed Dec 3 18:18:07 2014 +0000 Committer: Steve Loughran <[email protected]> Committed: Wed Dec 3 18:18:07 2014 +0000 ---------------------------------------------------------------------- app-packages/hbase/README.md | 6 ++--- app-packages/pom.xml | 46 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/54e09f92/app-packages/hbase/README.md ---------------------------------------------------------------------- diff --git a/app-packages/hbase/README.md b/app-packages/hbase/README.md index bd19464..04d3af9 100644 --- a/app-packages/hbase/README.md +++ b/app-packages/hbase/README.md @@ -31,18 +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/54e09f92/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
