OCI code editor
I am attempting to create an OCI function using the Java language. My Java class contains imports such as:
import org.json.*;
import org.apache.commons.cli.*;
import org.apache.http.*;
I am encountering an error during the compilation of the code in the code editor:
MarketPriceRdpGwClientCredAuth.java:21: error: package org.apache.commons.cli does not exist
import org.apache.commons.cli.*;
^
I have uploaded the JAR files which contain these libraries, but I am still encountering the same error.
How can I add these libraries to the classpath in the code editor?
Tagged:
0