MVN

tech.ydb.yoj : yoj-databind

Maven & Gradle

Dec 28, 2023

YOJ - Data-Binding · Core data-binding logic used by YOJ (YDB ORM for Java) to convert between Java objects and database rows (or anything representable by a Java Map, really).

<dependency>
    <groupId>tech.ydb.yoj</groupId>
    <artifactId>yoj-databind</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of tech.ydb.yoj : yoj-databind to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of tech.ydb.yoj : yoj-databind to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
yoj-databind-1.0.0

How to add a dependency to Maven

Add the following tech.ydb.yoj : yoj-databind maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>tech.ydb.yoj</groupId>
    <artifactId>yoj-databind</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following tech.ydb.yoj : yoj-databind gradle dependency to your build.gradle file:

implementation 'tech.ydb.yoj:yoj-databind:1.0.0'

Gradle Kotlin DSL: Add the following tech.ydb.yoj : yoj-databind gradle kotlin dependency to your build.gradle.kts file:

implementation("tech.ydb.yoj:yoj-databind:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following tech.ydb.yoj : yoj-databind sbt scala dependency to your build.sbt file:

libraryDependencies += "tech.ydb.yoj" % "yoj-databind" % "1.0.0"