문제

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!

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top