microbean-loader-jackson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.microbean</groupId> <artifactId>microbean-loader-jackson</artifactId> <version>0.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>microbean-loader-jackson</artifactId> <parent> <groupId>org.microbean</groupId> <artifactId>microbean-loader-parent</artifactId> <version>0.0.5</version> </parent> <name>microBean™ Loader: Jackson</name> <description>microBean™ Loader: Jackson</description> <dependencies> <!-- Compile-scoped dependencies. --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>microbean-loader-api</artifactId> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>microbean-loader</artifactId> <type>jar</type> <scope>compile</scope> </dependency> <!-- Test-scoped dependencies. --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <type>jar</type> <scope>test</scope> </dependency> </dependencies> </project>