Skip to content

Commit fe287ba

Browse files
committed
Merge pull request #291 from msgpack/update_readme
Update msgpack-java versions in README
2 parents 44550d1 + 51c4aed commit fe287ba

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ For Maven users:
1818
<dependency>
1919
<groupId>org.msgpack</groupId>
2020
<artifactId>msgpack-core</artifactId>
21-
<version>0.7.0-M6</version>
21+
<version>0.7.1</version>
2222
</dependency>
2323
```
2424

2525
For sbt users:
2626
```
27-
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.7.0-M6"
27+
libraryDependencies += "org.msgpack" % "msgpack-core" % "0.7.1"
2828
```
2929

3030
For gradle users:
@@ -34,7 +34,7 @@ repositories {
3434
}
3535
3636
dependencies {
37-
compile 'org.msgpack:msgpack-core:0.7.0-M6'
37+
compile 'org.msgpack:msgpack-core:0.7.1'
3838
}
3939
```
4040

msgpack-jackson/README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,30 @@
33
This Jackson extension library handles reading and writing of data encoded in [MessagePack](http://msgpack.org/) data format.
44
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.
55

6-
## Maven dependency
6+
## Install
77

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

1010
```
1111
<dependency>
1212
<groupId>org.msgpack</groupId>
1313
<artifactId>jackson-dataformat-msgpack</artifactId>
14-
<version>0.7.0-p9</version>
14+
<version>0.7.1</version>
1515
</dependency>
1616
```
1717

18+
### Gradle
19+
```
20+
repositories {
21+
mavenCentral()
22+
}
23+
24+
dependencies {
25+
compile 'org.msgpack:jackson-dataformat-msgpack:0.7.1'
26+
}
27+
```
28+
29+
1830
## Usage
1931

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

0 commit comments

Comments
 (0)