Download cbor-2.4.1.jar file - Jar c

Jar examples for c:cbor

Description

A Java implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049. According to that RFC, CBOR's data model "is an extended version of the JSON data model", supporting many more types of data than JSON. This implementation was written by Peter O. and is released to the Public Domain under the CC0 Declaration. This implementation also doubles as a reader and writer of JSON, and can convert data from JSON to CBOR and back. Finally, this implementation supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.

You can download jar file cbor 2.4.1 in this page.

License

The Apache Software License, Version 2.0

Build File

You can use the following script to add cbor-2.4.1.jar to your project.

<dependency>
   <groupId>com.upokecenter</groupId>
   <artifactId>cbor</artifactId>
   <version>2.4.1</version>
</dependency>
compile group: 'com.upokecenter', name: 'cbor', version: '2.4.1'
libraryDependencies += "com.upokecenter" % "cbor" % "2.4.1"
<dependency org="com.upokecenter" name="cbor" rev="2.4.1"/>
@Grapes(@Grab(group='com.upokecenter', module='cbor', version='2.4.1'))
'com.upokecenter:cbor:jar:2.4.1'

Download

Click the following link to download the jar file.

cbor-2.4.1-javadoc.jar
cbor-2.4.1-sources.jar
cbor-2.4.1.jar
cbor-2.4.1.pom



Related Tutorials