From 21a6dd2aef65a23d92f93c43fa731c0505250363 Mon Sep 17 00:00:00 2001 From: Xin Ren Date: Tue, 19 Jul 2016 11:59:46 +0100 Subject: [SPARK-16535][BUILD] In pom.xml, remove groupId which is redundant definition and inherited from the parent https://issues.apache.org/jira/browse/SPARK-16535 ## What changes were proposed in this pull request? When I scan through the pom.xml of sub projects, I found this warning as below and attached screenshot ``` Definition of groupId is redundant, because it's inherited from the parent ``` ![screen shot 2016-07-13 at 3 13 11 pm](https://cloud.githubusercontent.com/assets/3925641/16823121/744f893e-4916-11e6-8a52-042f83b9db4e.png) I've tried to remove some of the lines with groupId definition, and the build on my local machine is still ok. ``` org.apache.spark ``` As I just find now `3.3.9` is being used in Spark 2.x, and Maven-3 supports versionless parent elements: Maven 3 will remove the need to specify the parent version in sub modules. THIS is great (in Maven 3.1). ref: http://stackoverflow.com/questions/3157240/maven-3-worth-it/3166762#3166762 ## How was this patch tested? I've tested by re-building the project, and build succeeded. Author: Xin Ren Closes #14189 from keypointt/SPARK-16535. --- launcher/pom.xml | 1 - 1 file changed, 1 deletion(-) (limited to 'launcher') diff --git a/launcher/pom.xml b/launcher/pom.xml index 3db649bd32..6023cf0771 100644 --- a/launcher/pom.xml +++ b/launcher/pom.xml @@ -26,7 +26,6 @@ ../pom.xml - org.apache.spark spark-launcher_2.11 jar Spark Project Launcher -- cgit v1.2.3