aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorgli <gli@redhat.com>2015-02-14 20:43:27 +0000
committerSean Owen <sowen@cloudera.com>2015-02-14 20:44:02 +0000
commited5f4bb7cb2c934b818d1e8b8b4e6a0056119c80 (patch)
tree7ab8caa7e1210a5ca8e8a1afacd668ec15a3abdb /pom.xml
parent15a2ab5f89d56e67c84e7163d28d93e72583393c (diff)
downloadspark-ed5f4bb7cb2c934b818d1e8b8b4e6a0056119c80.tar.gz
spark-ed5f4bb7cb2c934b818d1e8b8b4e6a0056119c80.tar.bz2
spark-ed5f4bb7cb2c934b818d1e8b8b4e6a0056119c80.zip
SPARK-5822 [BUILD] cannot import src/main/scala & src/test/scala into eclipse as source folder
When import the whole project into eclipse as maven project, found that the src/main/scala & src/test/scala can not be set as source folder as default behavior, so add a "add-source" goal in scala-maven-plugin to let this work. Author: gli <gli@redhat.com> Closes #4531 from ligangty/addsource and squashes the following commits: 4e4db4c [gli] [IDE] cannot import src/main/scala & src/test/scala into eclipse as source folder
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 53372d5cfc..6810d71be4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1084,6 +1084,12 @@
<version>3.2.0</version>
<executions>
<execution>
+ <id>eclipse-add-source</id>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ </execution>
+ <execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>