I am developing my own Oracle authentication plugin (OAM 11g) using maven dependencies. I followed all the steps listed in the Oracle documentation to add maven dependencies:
1) Created an account in OTN and accepted the license 2) Created my settings file and POM file and added the following:
<server> <id>maven.oracle.com</id> <username> myemail@gmail.com </username> <password>*******</password> <configuration> <basicAuthScope> <host>ANY</host> <port>ANY</port> <realm>OAM 11g</realm> </basicAuthScope> <httpConfiguration> <all> <params> <property> <name>http.protocol.allow-circular-redirects</name> <value>%b,true</value> </property> </params> </all> </httpConfiguration> </configuration> </server>
After completing these steps, I still get the error message "Import oracle.security error could not be resolved" in my Java class, which means dependencies and are not resolved in my program. I would appreciate if anyone could help me understand this problem. thanks
source share