typesafe-java-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.dfa1.typesafe-java</groupId>
<artifactId>typesafe-java-core</artifactId>
<version>0.5.0</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.dfa1.typesafe-java</groupId>
<artifactId>typesafe-java</artifactId>
<version>0.5.0</version>
</parent>
<artifactId>typesafe-java-core</artifactId>
<packaging>jar</packaging>
<name>TypeSafe Core</name>
<description>
TypeSafeClient, ApiKey, TypeSafeException, the wire DTOs, and the JsonCodec/HttpTransport
SPIs. Zero dependency on any particular JSON or HTTP library — plug in
typesafe-java-jackson2/typesafe-java-jackson3 and typesafe-java-client-jdk (or your
own implementations). The DTOs and JsonCodec SPI alone are also reusable by any other
integration (e.g. a Kafka producer/consumer) that needs to (de)serialize TypeSafe payloads.
</description>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>