Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ For Maven users:
<dependency>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-core</artifactId>
<version>0.7.0-M6</version>
<version>0.7.1</version>
</dependency>
```

For sbt users:
```
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.7.0-M6"
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.7.1"
```

For gradle users:
Expand All @@ -34,7 +34,7 @@ repositories {
}
dependencies {
compile 'org.msgpack:msgpack-core:0.7.0-M6'
compile 'org.msgpack:msgpack-core:0.7.1'
}
```

Expand Down
18 changes: 15 additions & 3 deletions msgpack-jackson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,30 @@
This Jackson extension library handles reading and writing of data encoded in [MessagePack](http://msgpack.org/) data format.
It extends standard Jackson streaming API (`JsonFactory`, `JsonParser`, `JsonGenerator`), and as such works seamlessly with all the higher level data abstractions (data binding, tree model, and pluggable extensions). For the details of Jackson-annotations, please see https://github.com/FasterXML/jackson-annotations.

## Maven dependency
## Install

To use this module on Maven-based projects, use following dependency:
### Maven

```
<dependency>
<groupId>org.msgpack</groupId>
<artifactId>jackson-dataformat-msgpack</artifactId>
<version>0.7.0-p9</version>
<version>0.7.1</version>
</dependency>
```

### Gradle
```
repositories {
mavenCentral()
}

dependencies {
compile 'org.msgpack:jackson-dataformat-msgpack:0.7.1'
}
```


## Usage

Only thing you need to do is to instantiate MessagePackFactory and pass it to the constructor of ObjectMapper.
Expand Down