在根目录中构建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] [错误]
答案 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中的配置文件。