New releases of bson4jackson and gradle-download-task
Today, I’m happy to announce new versions of bson4jackson 2.6.0 and
gradle-download-task 2.1.0. bson4jackson adds support
for BSON, a binary representation of JSON, to the Jackson JSON processor.
gradle-download-task is a Gradle plugin that provides a Download
task
displaying progress information while downloading files—just like Gradle does
when it fetches an artifact from a repository.
Grab the new releases while they’re still hot:
https://github.com/michel-kraemer/gradle-download-task
https://github.com/michel-kraemer/bson4jackson
The new versions are maintenance releases fixing a few minor bugs.
Changes
bson4jackson 2.6.0
- Upgrade to Jackson 2.6
- Add missing
hashCode()
functions for custom types - Add support for
MinKey
(see issue #51)
gradle-download-task 2.1.0
- Update to Gradle 2.9
- Support Gradle’s
--offline
command line parameter (see feature request #33)
More information
For a complete description of bson4jackson (including how to download it) have a look at my tutorial. If you want to learn more about gradle-download-task have a look at its README file or at my earlier post.
Posted by Michel Krämer
on 15 December 2015
Next post
ECMAScript 6/7 on the JVM with TypeScript and Vert.x
In this article, I describe how to use ES6 and ES7 features on the JVM with vertx-lang-typescript. The library extends Vert.x 3, so you can write your verticles in TypeScript.
Previous post
vertx-lang-typescript 1.0.0
Today, I’m excited to announce the first stable version of vertx-lang-typescript, a library that adds support for TypeScript to Vert.x 3! It allows you to write verticles in TypeScript that are automatically compiled when they are executed.
Related posts
10 recipes for gradle-download-task
gradle-download-task is a Gradle plugin that allows you to download files during the build process. This post summarizes common patterns and use cases of gradle-download-task and provides useful tips and tricks.
Binary JSON with bson4jackson
This post introduces the open-source library bson4jackson, which is an extension to the Jackson JSON processor. It enables you to parse and generate documents in a binary JSON format called BSON.
New features in gradle-download-task 3.4.0
Version 3.4.0 of the popular Gradle plugin contains many new features. Highlights are the support for ETags and downloading to a temporary file. The update also contains various other improvements.