agg-serialization-jackson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.haloopdev</groupId> <artifactId>agg-serialization-jackson</artifactId> <version>1.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.haloopdev</groupId> <artifactId>agg-integration</artifactId> <version>1.0.8</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>agg-serialization-jackson</artifactId> <name>Agg Serializer (Jackson)</name> <description>使用 Jackson 实现数据的序列化、反序列化</description> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.haloopdev</groupId> <artifactId>agg-exchange</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.haloopdev</groupId> <artifactId>agg-mock</artifactId> <scope>test</scope> </dependency> </dependencies> </project>