I am unable to download Oracle RIDC client dependencies using maven. I added below code in pom.xml
<dependency>
<groupId>com.oracle.ucm</groupId>
<artifactId>ridc</artifactId>
<version>11.1.1</version>
</dependency>
my question is do I need to add any plugins or it is not possible to download the ridc dependencies using maven
Oracle dependencies are typically not available in the public maven repo. To go about this you can do a few things.
mvn install:install-file -Dfile=<path> -DgroupId=<group> -DartifactId=<id> -Dversion=<version> -Dpackaging=jar