Spark 1.3.0:构建示例:无法执行目标org.scalastyle

时间:2015-04-03 15:51:48

标签: maven build apache-spark

在根目录中构建Spark 1.3.0后,无论构建examples目录的命令是什么:

 mvn -Pyarn -Phadoop-2.4 -Dhadoop.version=2.6.0 -DskipTests clean package

或只是:

 mvn -DskipTest clean package

我明白了:

[错误]无法执行目标org.scalastyle:scalastyle-maven-plugin:0.4.0:检查(默认)项目spark-examples_2.10:w期间失败:无法在位置找到配置文件scalastyle-config .xml - > [帮助1] [错误]

2 个答案:

答案 0 :(得分:5)

[spark_root] /scalastyle-config.xml 复制到 [spark_root] /examples/scalastyle-config.xml 可以解决问题

答案 1 :(得分:3)

scalastyle-config.xml从父文件夹复制到examples文件夹应该可以解决问题。

<plugin>
  <groupId>org.scalastyle</groupId>
  <artifactId>scalastyle-maven-plugin</artifactId>
...
  <configLocation>scalastyle-config.xml</configLocation>

pom.xml中的配置需要调用目录maven中的配置文件。