MVN

com.oracle.database.soda : orajsoda

Maven & Gradle

Aug 06, 2023
65 stars

SODA (Simple Oracle Document Access) for Java · SODA for Java is a library for writing Java apps that work with JSON (and not only JSON!) in the Oracle Database. SODA allows your Java app to use the Oracle Database as a NoSQL document store. You can use SODA to perform create, read, update, and delete (CRUD) operations on JSON documents, as well as arbitrary binary documents (images, PDFs, mp3s, etc). For all types of documents, CRUD operations are driven by keys (each document in SODA has a unique key). For JSON documents, in addition to keys, operations can be driven by easy to use pattern-like queries knowns as QBEs (queries-by-example).

<dependency>
    <groupId>com.oracle.database.soda</groupId>
    <artifactId>orajsoda</artifactId>
    <version>1.1.7.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.oracle.database.soda : orajsoda to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1.7.2

All Versions

Choose a version of com.oracle.database.soda : orajsoda to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1.x
orajsoda-1.1.7.2
orajsoda-1.1.7.1
orajsoda-1.1.7
orajsoda-1.1.4

How to add a dependency to Maven

Add the following com.oracle.database.soda : orajsoda maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.oracle.database.soda</groupId>
    <artifactId>orajsoda</artifactId>
    <version>1.1.7.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.oracle.database.soda : orajsoda gradle dependency to your build.gradle file:

implementation 'com.oracle.database.soda:orajsoda:1.1.7.2'

Gradle Kotlin DSL: Add the following com.oracle.database.soda : orajsoda gradle kotlin dependency to your build.gradle.kts file:

implementation("com.oracle.database.soda:orajsoda:1.1.7.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.oracle.database.soda : orajsoda sbt scala dependency to your build.sbt file:

libraryDependencies += "com.oracle.database.soda" % "orajsoda" % "1.1.7.2"

Advertisement