aws-sdk2-dynamo-json-helper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.bijukunjummen</groupId> <artifactId>aws-sdk2-dynamo-json-helper</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.github.bijukunjummen</groupId> <artifactId>aws-sdk2-dynamo-json-helper</artifactId> <version>1.0.0</version> <name>aws-sdk2-dynamo-json-helper</name> <description>Utility for converting a JSON to AWS SDK2 AttributeValue and back</description> <url>https://github.com/bijukunjummen/aws-sdk2-dynamo-json-helper.git</url> <inceptionYear>2021</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>bijukunjummen</id> <name>Biju Kunjummen</name> </developer> </developers> <scm> <connection>https://github.com/bijukunjummen/aws-sdk2-dynamo-json-helper.git</connection> <url>https://github.com/bijukunjummen/aws-sdk2-dynamo-json-helper.git</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-bom</artifactId> <version>2.15.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>dynamodb</artifactId> <version>2.20.86</version> <scope>compile</scope> </dependency> </dependencies> </project>