Releases: autotraderuk/traverson4j
Releases · autotraderuk/traverson4j
Release of Version 1
No difference to rc2, but now release version.
Changed the ResourceConverter to handle inputStream
Changed the ResourceConverter types to take in an inputStream over a String, this will allow users to consume binary payloads if they wish. Included a ByteArrayResourceConverter implementation so that you can request a body like
...
.get(byte[].class);
v1.0.0-rc.1 - First publish
Built on my machine and published to my bintray. Aiming to publish to jcenter soon, but to use
build.gradle
repositories {
maven {
url "https://dl.bintray.com/mikerocke/maven"
}
}
dependencies {
compile 'uk.co.autotrader:traverson4j-core:1.0.0-rc.1'
compile 'uk.co.autotrader:traverson4j-hc4:1.0.0-rc.1'
compile 'uk.co.autotrader:traverson4j-jackson2:1.0.0-rc.1'
}
or for Maven
settings.xml
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-mikerocke-maven</id>
<name>bintray</name>
<url>https://dl.bintray.com/mikerocke/maven</url>
</repository>
pom.xml
<dependency>
<groupId>uk.co.autotrader</groupId>
<artifactId>traverson4j-core</artifactId>
<version>1.0.0-rc.1</version>
</dependency>
<dependency>
<groupId>uk.co.autotrader</groupId>
<artifactId>traverson4j-hc4</artifactId>
<version>1.0.0-rc.1</version>
</dependency>
<dependency>
<groupId>uk.co.autotrader</groupId>
<artifactId>traverson4j-jackson2</artifactId>
<version>1.0.0-rc.1</version>
</dependency>