jackson-datatype-cryptoconditions
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ripple.cryptoconditions</groupId> <artifactId>jackson-datatype-cryptoconditions</artifactId> <version>1.0.5</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"> <parent> <groupId>com.ripple.cryptoconditions</groupId> <artifactId>crypto-conditions-parent</artifactId> <version>1.0.5</version> </parent> <modelVersion>4.0.0</modelVersion> <name>Crypto-Conditions Jackson</name> <artifactId>jackson-datatype-cryptoconditions</artifactId> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <!-- Marking as provided because this dependency is not needed unless Base16 Hex Encoding is used. --> <scope>provided</scope> </dependency> <dependency> <groupId>com.ripple.cryptoconditions</groupId> <artifactId>crypto-conditions</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.i2p.crypto</groupId> <artifactId>eddsa</artifactId> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk16</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </dependency> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>