Apache Johnzon Releases

This page contains download links to the latest Apache Johnzon releases.

All maven artifacts are available in the Maven.Central repository with the groupId org.apache.johnzon. The dependencies you can use are listed at the bottom of this page: Maven Dependencies.

should be addressed to the mailing list.

KEYS for verifying Apache releases

Please use the Johnzon KEYS file to validate our releases. Read more about how we sign Apache Releases


Johnzon-1.1.x

Apache Johnzon 1.1.x implements the JSON-P 1.1 and JSON-B 1.0 specifications which on a level of JavaEE 8.

Binaries

The binary distribution contains all Johnzon modules.

Source

Should you want to build any of the above binaries, this source bundle is the right one and covers them all.

Johnzon-1.0.x

Apache Johnzon 1.0.x implements the JSON-P 1.0 specification and a preliminary version of the JSON-B 1.0. This corresponds to JavaEE 7 level.

Binaries

The binary distribution contains all Johnzon modules.

Source

Should you want to build any of the above binaries, this source bundle is the right one and covers them all.


Maven Dependencies

APIs for Johnzon-1.1.x (JavaEE 8)

<dependency>
    <groupId>org.apache.geronimo.specs</groupId>
    <artifactId>geronimo-json_1.1_spec</artifactId>
    <version>1.0</version>
</dependency>

<dependency>
    <groupId>org.apache.geronimo.specs</groupId>
    <artifactId>geronimo-jsonb_1.0_spec</artifactId>
    <version>1.2</version>
</dependency>

APIs for Johnzon-1.0.x (JavaEE 7)

<dependency>
    <groupId>org.apache.geronimo.specs</groupId>
    <artifactId>geronimo-json_1.0_spec</artifactId>
    <version>1.0-alpha-1</version>
</dependency>

<dependency>
    <groupId>org.apache.geronimo.specs</groupId>
    <artifactId>geronimo-jsonb_1.0_spec</artifactId>
    <version>1.0</version>
</dependency>

Note that you should set the scope of those dependencies to either provided or compile depending on whether your environment already provide them or not.