aboutsummaryrefslogtreecommitdiff
path: root/assembly
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2015-02-11 08:30:16 +0000
committerSean Owen <sowen@cloudera.com>2015-02-11 08:30:25 +0000
commit057ec4f3342fbffea497e06e7e43591da2ce1a20 (patch)
tree70127d36517c8a23f581873c185020e62417c023 /assembly
parent476b6d77b401143bd44441a75131232fdf6efff8 (diff)
downloadspark-057ec4f3342fbffea497e06e7e43591da2ce1a20.tar.gz
spark-057ec4f3342fbffea497e06e7e43591da2ce1a20.tar.bz2
spark-057ec4f3342fbffea497e06e7e43591da2ce1a20.zip
SPARK-5727 [BUILD] Deprecate Debian packaging
This just adds a deprecation message. It's intended for backporting to branch 1.3 but can go in master too, to be followed by another PR that removes it for 1.4. Author: Sean Owen <sowen@cloudera.com> Closes #4516 from srowen/SPARK-5727.1 and squashes the following commits: d48989f [Sean Owen] Refer to Spark 1.4 6c1c8b3 [Sean Owen] Deprecate Debian packaging (cherry picked from commit bd0d6e0cc3a329c4a1c08451a6d8a9281a422958) Signed-off-by: Sean Owen <sowen@cloudera.com>
Diffstat (limited to 'assembly')
-rw-r--r--assembly/pom.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/assembly/pom.xml b/assembly/pom.xml
index d1f33dc26d..87b3e6fb84 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -222,6 +222,24 @@
<build>
<plugins>
<plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <target>
+ <echo>
+ NOTE: Debian packaging is deprecated and is scheduled to be removed in Spark 1.4.
+ </echo>
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.2</version>