# Json EventFormat implementation with Jackson [![Javadocs](http://www.javadoc.io/badge/io.cloudevents/cloudevents-json-jackson.svg?color=green)](http://www.javadoc.io/doc/io.cloudevents/cloudevents-json-jackson) Implementation of [`EventFormat`](../../api/src/main/java/io/cloudevents/format/EventFormat.java) using Jackson. For Maven: ```xml io.cloudevents cloudevents-json-jackson 2.0.0-milestone4 ``` ## Usage You don't need to perform any operation to configure the module, more than adding the dependency to your project: ```java CloudEvent event = CloudEventBuilder.v1() .withId("hello") .withType("example.vertx") .withSource(URI.create("http://localhost")) .build(); byte[] serialized = EventFormatProvider .getInstance() .resolveFormat(JsonFormat.CONTENT_TYPE) .serialize(event); ```