aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2014-12-30 14:00:57 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-12-30 14:00:57 -0800
commitb239ea1c31aeaa752d5dc8f45423df1f8c0924ca (patch)
tree798c2039c162c2eb3e681c022c135ed5ec18596b /pom.xml
parent07fa1910d9c4092d670381c447403105f01c584e (diff)
downloadspark-b239ea1c31aeaa752d5dc8f45423df1f8c0924ca.tar.gz
spark-b239ea1c31aeaa752d5dc8f45423df1f8c0924ca.tar.bz2
spark-b239ea1c31aeaa752d5dc8f45423df1f8c0924ca.zip
SPARK-3955 part 2 [CORE] [HOTFIX] Different versions between jackson-mapper-asl and jackson-core-asl
pwendell https://github.com/apache/spark/commit/2483c1efb6429a7d8a20c96d18ce2fec93a1aff9 didn't actually add a reference to `jackson-core-asl` as intended, but a second redundant reference to `jackson-mapper-asl`, as markhamstra picked up on (https://github.com/apache/spark/pull/3716#issuecomment-68180192) This just rectifies the typo. I missed it as well; the original PR https://github.com/apache/spark/pull/2818 had it correct and I also didn't see the problem. Author: Sean Owen <sowen@cloudera.com> Closes #3829 from srowen/SPARK-3955 and squashes the following commits: 6cfdc4e [Sean Owen] Actually refer to jackson-core-asl
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index a843af2b22..05f59a9b41 100644
--- a/pom.xml
+++ b/pom.xml
@@ -827,7 +827,7 @@
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-mapper-asl</artifactId>
+ <artifactId>jackson-core-asl</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>