Implementation of a Jackson parser for parsing the HOCON data format.
HOCON stands for Human-Optimized Config Object Notation and is made by Typesafe. Check out the project here: github.com/typesafehub/config
In short, HOCON combines YAML, JSON, and Properties files into a single format. On most cases, YAML, JSON, and Properties formats are all valid HOCON--- and it can be mixed and matched at will. Check out the HOCON docs for more detail on the format.
I created this project because I wanted to be able to use HOCON to configure my Dropwizard based applications. Under the hood, Dropwizard uses Jackson to parse its configuration files in either JSON / YAML format. I wanted to be able to easily switch that to using HOCON. Thus, this project was born.