On Tue, Feb 9, 2016 at 12:01 PM, Yi Pan <nickpa...@gmail.com> wrote:
> Could you try to fix the jackson version to 1.9.13 in your build first?

That fixed it! Thank you!

> It seems like a incompatible jackson version issue, as you have noticed in
> your classpath. It would be good if you can share your maven pom.xml as
> well.

Well, I’m using JBundler so I haven’t written a pom.xml and I don’t know if
JBundler can export one. It uses a Jarfile; here’s my current file:

```
repository :apache, "https://repository.apache.org/content/groups/public";
repository :confluent, "http://packages.confluent.io/maven/";

# This isn’t used directly by our code but I had issues wherein an older
# version was referenced by one of the top-level dependencies — and
# it was incompatible with… something else, not sure what. So I’m explicitly
# listing the latest version here to attempt to resolve that.
jar 'org.codehaus.jackson:jackson-mapper-asl', '1.9.13'

jar 'io.confluent:kafka-avro-serializer', '2.0.0'
jar 'org.apache.samza:samza-api', '0.10.0'
jar 'org.apache.samza:samza-core_2.10', '0.10.0'
jar 'org.apache.samza:samza-shell', '0.10.0'
jar 'org.apache.samza:samza-yarn_2.10', '0.10.0'
jar 'org.apache.samza:samza-kv_2.10', '0.10.0'
jar 'org.apache.samza:samza-kv-rocksdb_2.10', '0.10.0'
jar ‘org.apache.samza:samza-kafka_2.10', '0.10.0'
```

Thanks again!
Avi

Reply via email to