Skip to content

Commit

Permalink
Added Maven badge to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bencampion committed Aug 10, 2015
1 parent 3fb2ce6 commit 8177fc0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Bit Wrapper

[![Build Status](https://travis-ci.org/bencampion/bit-wrapper.svg?branch=master)](https://travis-ci.org/bencampion/bit-wrapper) [![Coverage Status](http://coveralls.io/repos/bencampion/bit-wrapper/badge.svg?branch=master&service=github)](http://coveralls.io/github/bencampion/bit-wrapper?branch=master)
[![Build Status](https://travis-ci.org/bencampion/bit-wrapper.svg?branch=master)](https://travis-ci.org/bencampion/bit-wrapper) [![Coverage Status](http://coveralls.io/repos/bencampion/bit-wrapper/badge.svg?branch=master&service=github)](http://coveralls.io/github/bencampion/bit-wrapper?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser/badge.svg)](https://maven-badges.herokuapp.com/maven-central/uk.recurse.bitwrapper/bit-wrapper)


Bit wrapper is an declarative framework written in Java for parsing binary data in a `byte[]` or `ByteBuffer`. It uses annotated interfaces to describe the fields in a bitstream and generates implementations of these interfaces at runtime that can be used to access the fields. Bit Wrapper is lazy; it doesn't copy data from the underlying `byte[]` or `ByteBuffer` until it needs to.

* [API documentation](https://bencampion.github.io/bit-wrapper/apidocs/)

Bit wrapper is inspired by (and very similar to) [Preon](https://github.com/preon/preon).

## Examples

### IPv6 packet header
Expand Down

0 comments on commit 8177fc0

Please sign in to comment.