retrofit-converter-msgpack

Retrofit Converter for MessagePack

License

License

Categories

Categories

Retrofit Net HTTP Clients
GroupId

GroupId

org.komamitsu
ArtifactId

ArtifactId

retrofit-converter-msgpack
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

retrofit-converter-msgpack
Retrofit Converter for MessagePack
Project URL

Project URL

https://github.com/komamitsu/retrofit-converter-msgpack
Source Code Management

Source Code Management

https://github.com/komamitsu/retrofit-converter-msgpack

Download retrofit-converter-msgpack

How to add to project

<!-- https://jarcasting.com/artifacts/org.komamitsu/retrofit-converter-msgpack/ -->
<dependency>
    <groupId>org.komamitsu</groupId>
    <artifactId>retrofit-converter-msgpack</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.komamitsu/retrofit-converter-msgpack/
implementation 'org.komamitsu:retrofit-converter-msgpack:1.1.0'
// https://jarcasting.com/artifacts/org.komamitsu/retrofit-converter-msgpack/
implementation ("org.komamitsu:retrofit-converter-msgpack:1.1.0")
'org.komamitsu:retrofit-converter-msgpack:jar:1.1.0'
<dependency org="org.komamitsu" name="retrofit-converter-msgpack" rev="1.1.0">
  <artifact name="retrofit-converter-msgpack" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.komamitsu', module='retrofit-converter-msgpack', version='1.1.0')
)
libraryDependencies += "org.komamitsu" % "retrofit-converter-msgpack" % "1.1.0"
[org.komamitsu/retrofit-converter-msgpack "1.1.0"]

Dependencies

runtime (2)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.22
org.msgpack : jackson-dataformat-msgpack jar 0.8.16

test (5)

Group / Artifact Type Version
com.squareup.retrofit2 : retrofit jar 2.4.0
junit : junit jar 4.12
ch.qos.logback : logback-classic jar 1.1.8
org.hamcrest : hamcrest-all jar 1.3
com.squareup.okhttp3 : mockwebserver jar 3.10.0

Project Modules

There are no modules declared in this project.

Retrofit-Converter-MessagePack

Maven Central Coverage Status

Retrofit Converter for MessagePack

Install

Gradle

dependencies {
    implementation 'org.komamitsu:retrofit-converter-msgpack:x.x.x'
}

Maven

<dependency>
    <groupId>org.komamitsu</groupId>
    <artifactId>retrofit-converter-msgpack</artifactId>
    <version>x.x.x</version>
</dependency>

Usage

To use, supply an instance of this converter when building your Retrofit instance.

Retrofit retrofit = new Retrofit.Builder()
    .baseUrl("https://api.example.com")
    .addConverterFactory(MessagePackConverterFactory.create())
    .build();

Versions

Version
1.1.0
1.0.0