aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorYin Huai <yhuai@databricks.com>2016-11-28 10:09:30 -0800
committerYin Huai <yhuai@databricks.com>2016-11-28 10:09:30 -0800
commiteba727757ed5dc23c635e1926795aea62ec0fc66 (patch)
tree5f6003e76e23aedccad3fe3f1d6e0032c3d1a536 /pom.xml
parent237c3b9642a1a7c5e7884824b21877590d5d0b3b (diff)
downloadspark-eba727757ed5dc23c635e1926795aea62ec0fc66.tar.gz
spark-eba727757ed5dc23c635e1926795aea62ec0fc66.tar.bz2
spark-eba727757ed5dc23c635e1926795aea62ec0fc66.zip
[SPARK-18602] Set the version of org.codehaus.janino:commons-compiler to 3.0.0 to match the version of org.codehaus.janino:janino
## What changes were proposed in this pull request? org.codehaus.janino:janino depends on org.codehaus.janino:commons-compiler and we have been upgraded to org.codehaus.janino:janino 3.0.0. However, seems we are still pulling in org.codehaus.janino:commons-compiler 2.7.6 because of calcite. It looks like an accident because we exclude janino from calcite (see here https://github.com/apache/spark/blob/branch-2.1/pom.xml#L1759). So, this PR upgrades org.codehaus.janino:commons-compiler to 3.0.0. ## How was this patch tested? jenkins Author: Yin Huai <yhuai@databricks.com> Closes #16025 from yhuai/janino-commons-compile.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 5c417d2b35..c391102d37 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1759,6 +1759,10 @@
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.codehaus.janino</groupId>
+ <artifactId>commons-compiler</artifactId>
+ </exclusion>
<!-- hsqldb interferes with the use of derby as the default db
in hive's use of datanucleus.
-->
@@ -1797,6 +1801,11 @@
<version>${janino.version}</version>
</dependency>
<dependency>
+ <groupId>org.codehaus.janino</groupId>
+ <artifactId>commons-compiler</artifactId>
+ <version>${janino.version}</version>
+ </dependency>
+ <dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${joda.version}</version>