Skip to content

Commit 0c73e1a

Browse files
committed
Merge pull request #368 from marenzo/patch-2
Remove specific version and add SBT example
2 parents d25d612 + bf038b9 commit 0c73e1a

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

msgpack-jackson/README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,24 @@ It extends standard Jackson streaming API (`JsonFactory`, `JsonParser`, `JsonGen
1414
<dependency>
1515
<groupId>org.msgpack</groupId>
1616
<artifactId>jackson-dataformat-msgpack</artifactId>
17-
<version>0.8.1</version>
17+
<version>(version)</version>
1818
</dependency>
1919
```
2020

21+
### Sbt
22+
23+
```
24+
libraryDependencies += "org.msgpack" % "jackson-dataformat-msgpack" % "(version)"
25+
```
26+
2127
### Gradle
2228
```
2329
repositories {
2430
mavenCentral()
2531
}
2632
2733
dependencies {
28-
compile 'org.msgpack:jackson-dataformat-msgpack:0.8.1'
34+
compile 'org.msgpack:jackson-dataformat-msgpack:(version)'
2935
}
3036
```
3137

@@ -94,4 +100,4 @@ Also, it's possible to set the serialization format for the object mapper instan
94100
objectMapper.setAnnotationIntrospector(new JsonArrayFormat());
95101
```
96102

97-
This format provides compatibility with msgpack-java 0.6.x serialization api.
103+
This format provides compatibility with msgpack-java 0.6.x serialization api.

0 commit comments

Comments
 (0)