2

I am working on an existing application which has below reference inside the code.

import weblogic.security.providers.authentication.UserNameMapper;

The exising application has weblogic.jar as dependency, but from weblogic 10 onwards, weblogic.jar has been split into multiple jars and currently com.bea.core.common.security.providers.env_1.0.0.0_6-2-0-0 in Weblogic 10.3.6 has UserNameMapper.java.

My question is where to find the maven definition for this jar? If not, what is the alternative solution?

Thanks!

user2982680
  • 979
  • 2
  • 9
  • 16

1 Answers1

1

Oracle might have pulled the jar out of Maven.

Refer here - is weblogic-maven-plugin available from maven center repository?

Alternate solution:

Either you can include that jar in your classpath of application, or you can install particular jar file in your maven reopos.

Refer here - build maven project with propriatery libraries included

Community
  • 1
  • 1
Indu Devanath
  • 2,068
  • 1
  • 16
  • 17