From 96e25e567cddb5327af0b56e810d3f8124677288 Mon Sep 17 00:00:00 2001 From: Raymond Liu <raymond.liu@intel.com> Date: Fri, 6 Dec 2013 16:04:54 +0800 Subject: [PATCH] Fix yarn/assemble pom file --- yarn/assembly/pom.xml | 46 ++++++++++++++++++++++++++ yarn/assembly/src/assemble/uberjar.xml | 29 ++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 yarn/assembly/src/assemble/uberjar.xml diff --git a/yarn/assembly/pom.xml b/yarn/assembly/pom.xml index 7f3539cd42..659b8c5ca7 100644 --- a/yarn/assembly/pom.xml +++ b/yarn/assembly/pom.xml @@ -41,5 +41,51 @@ <build> <outputDirectory>target/scala-${scala.version}/classes</outputDirectory> <testOutputDirectory>target/scala-${scala.version}/test-classes</testOutputDirectory> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + <descriptors> + <descriptor>src/assemble/uberjar.xml</descriptor> + </descriptors> + </configuration> + <executions> + <execution> + <id>uberjar</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> + + <profiles> + <profile> + <id>hadoop2-yarn</id> + <dependencies> + <dependency> + <groupId>org.apache.spark</groupId> + <artifactId>spark-yarn-2.0-api_2.10</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + </profile> + + <profile> + <id>hadoop2.2-yarn</id> + <dependencies> + <dependency> + <groupId>org.apache.spark</groupId> + <artifactId>spark-yarn-2.2-api_2.10</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + </profile> + </profiles> + </project> diff --git a/yarn/assembly/src/assemble/uberjar.xml b/yarn/assembly/src/assemble/uberjar.xml new file mode 100644 index 0000000000..0fbcdce17b --- /dev/null +++ b/yarn/assembly/src/assemble/uberjar.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed 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. +--> +<assembly> + <id>uberjar</id> + <formats> + <format>jar</format> + </formats> + <includeBaseDirectory>false</includeBaseDirectory> + <dependencySets> + <dependencySet> + <unpack>true</unpack> + <scope>runtime</scope> + <useProjectArtifact>true</useProjectArtifact> + <useTransitiveDependencies>false</useTransitiveDependencies> + </dependencySet> + </dependencySets> +</assembly> -- GitLab