aboutsummaryrefslogtreecommitdiff
path: root/unsafe/pom.xml
diff options
context:
space:
mode:
authorTom Graves <tgraves@yahoo-inc.com>2015-06-25 08:27:08 -0500
committerTom Graves <tgraves@yahoo-inc.com>2015-06-25 08:27:08 -0500
commite988adb58f02d06065837f3d79eee220f6558def (patch)
tree413fc442cba3e291edc73a007b19111f41c77c93 /unsafe/pom.xml
parent085a7216bf5e6c2b4f297feca4af71a751e37975 (diff)
downloadspark-e988adb58f02d06065837f3d79eee220f6558def.tar.gz
spark-e988adb58f02d06065837f3d79eee220f6558def.tar.bz2
spark-e988adb58f02d06065837f3d79eee220f6558def.zip
[SPARK-8574] org/apache/spark/unsafe doesn't honor the java source/ta…
…rget versions. I basically copied the compatibility rules from the top level pom.xml into here. Someone more familiar with all the options in the top level pom may want to make sure nothing else should be copied on down. With this is allows me to build with jdk8 and run with lower versions. Source shows compiled for jdk6 as its supposed to. Author: Tom Graves <tgraves@yahoo-inc.com> Author: Thomas Graves <tgraves@staydecay.corp.gq1.yahoo.com> Closes #6989 from tgravescs/SPARK-8574 and squashes the following commits: e1ea2d4 [Thomas Graves] Change to use combine.children="append" 150d645 [Tom Graves] [SPARK-8574] org/apache/spark/unsafe doesn't honor the java source/target versions
Diffstat (limited to 'unsafe/pom.xml')
-rw-r--r--unsafe/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsafe/pom.xml b/unsafe/pom.xml
index 62c6354f1e..dd2ae6457f 100644
--- a/unsafe/pom.xml
+++ b/unsafe/pom.xml
@@ -80,7 +80,7 @@
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<configuration>
- <javacArgs>
+ <javacArgs combine.children="append">
<!-- This option is needed to suppress warnings from sun.misc.Unsafe usage -->
<javacArg>-XDignore.symbol.file</javacArg>
</javacArgs>