MVN

io.dataspray : single-table

Maven & Gradle

Apr 30, 2023
1 stars

Single Table · DynamoDB best practices encourages a single-table design that allows multiple record types to reside within the same table. The goal of this library is to improve the experience of Java developers and make it safer to define non-conflicting schema of each record, serializing and deserializing automatically and working with secondary indexes.

<dependency>
    <groupId>io.dataspray</groupId>
    <artifactId>single-table</artifactId>
    <version>0.0.11</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.dataspray : single-table to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.11

All Versions

Choose a version of io.dataspray : single-table to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
single-table-0.0.11
single-table-0.0.8
single-table-0.0.7
single-table-0.0.6
single-table-0.0.5
single-table-0.0.4
single-table-0.0.3

How to add a dependency to Maven

Add the following io.dataspray : single-table maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.dataspray</groupId>
    <artifactId>single-table</artifactId>
    <version>0.0.11</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.dataspray : single-table gradle dependency to your build.gradle file:

implementation 'io.dataspray:single-table:0.0.11'

Gradle Kotlin DSL: Add the following io.dataspray : single-table gradle kotlin dependency to your build.gradle.kts file:

implementation("io.dataspray:single-table:0.0.11")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.dataspray : single-table sbt scala dependency to your build.sbt file:

libraryDependencies += "io.dataspray" % "single-table" % "0.0.11"