aboutsummaryrefslogtreecommitdiff
path: root/core/pom.xml
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2016-06-14 09:40:07 -0700
committerWenchen Fan <wenchen@databricks.com>2016-06-14 09:40:07 -0700
commit6151d2641f91c8e3ec0c324e78afb46cdb2ef111 (patch)
treee183d9aa95c468b340d8e0b1b4a19ca0982a4148 /core/pom.xml
parent6e8cdef0cf36f6e921d9e1a65c61b66196935820 (diff)
downloadspark-6151d2641f91c8e3ec0c324e78afb46cdb2ef111.tar.gz
spark-6151d2641f91c8e3ec0c324e78afb46cdb2ef111.tar.bz2
spark-6151d2641f91c8e3ec0c324e78afb46cdb2ef111.zip
[MINOR] Clean up several build warnings, mostly due to internal use of old accumulators
## What changes were proposed in this pull request? Another PR to clean up recent build warnings. This particularly cleans up several instances of the old accumulator API usage in tests that are straightforward to update. I think this qualifies as "minor". ## How was this patch tested? Jenkins Author: Sean Owen <sowen@cloudera.com> Closes #13642 from srowen/BuildWarnings.
Diffstat (limited to 'core/pom.xml')
-rw-r--r--core/pom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pom.xml b/core/pom.xml
index f5fdb40696..90c8f97f2b 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -356,12 +356,12 @@
<phase>generate-resources</phase>
<configuration>
<!-- Execute the shell script to generate the spark build information. -->
- <tasks>
+ <target>
<exec executable="${project.basedir}/../build/spark-build-info">
<arg value="${project.build.directory}/extra-resources"/>
- <arg value="${pom.version}"/>
+ <arg value="${project.version}"/>
</exec>
- </tasks>
+ </target>
</configuration>
<goals>
<goal>run</goal>