Currently i am uploading a jar to nexus repository, its a "jar with dependencies" (jwd). Now when i try to use this jwd as dependency in my other maven project, it searches for the specified dependency in jwd inside m2. So there are 2 jars ("com.apigee-edge:expressions-1.0.0.jar","com.apigee-edge:message-flow-1.0.0.jar" ) inside jwd that dosent come from maven central repository. so i get error saying these jars are not found. i am just wondering i have already bundled this as jwd, then why its searching for these 2 jars. Can anyone please help, where i might be going wrong? I am adding jwd, this way in my new maven project.
<dependency>
<groupId>com.test</groupId>
<artifactId>algo-validator</artifactId>
<version>1.0-20230307.163545-1</version>
<classifier>jar-with-dependencies</classifier>
</dependency>