Skip to content

Commit 289af13

Browse files
authored
Update Getting-started-example.md
1 parent 945548b commit 289af13

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

doc/Getting-started-example.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,18 @@ public class testSODA {
155155

156156
Copy and paste this code into a file called testSODA.java. Then modify the "url" String at the beginning of the program with connection info for your Oracle RDBMS instance. Also "user" and "password" properties set at the beginning of the program need to be modified with the schema name which will contain the table backing the collection, and the password for that schema.
157157

158-
To compile and run SODA Java applications, you need the following jars:
158+
To compile and run SODA for Java application you will need the orajsoda-version.jar and its dependencies (javax.json-1.1.4.jar, which is the JSR252 implementation, and the Oracle JDBC jar).
159+
160+
You can obtain the latest SODA for Java jar and its dependencies using these Maven coordinates:
161+
162+
<!-- https://mvnrepository.com/artifact/com.oracle.database.soda/orajsoda -->
163+
<dependency>
164+
<groupId>com.oracle.database.soda</groupId>
165+
<artifactId>orajsoda</artifactId>
166+
<version>1.1.4</version>
167+
</dependency>
168+
169+
If you need to download the SODA jar and the dependencies manually, you can do that as follows:
159170

160171
* A JDBC 8 or above jar. For example, if you're using JDK8 or above, you could use ojdbc8.jar that ships with Oracle Database 18c, available from [this page](https://www.oracle.com/technetwork/database/application-development/jdbc/downloads/jdbc-ucp-183-5013470.html). Alternatively, you can also use ojdbc8.jar that ships with OracleDatabase 12.2.0.1, available from [this page](http://www.oracle.com/technetwork/database/features/jdbc/jdbc-ucp-122-3110062.html).
161172

0 commit comments

Comments
 (0)