I have a maven based project. And I have few dependencies that are our custom dependencies.
Now till now, if I add these dependencies in java build path and make their entry in pom file using
<dependency>
<groupId>abc</groupId>
<artifactId>abc</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}\src\lib\abc.jar</systemPath>
</dependency>
And make project build then it works fine.
But as I tried by removing its entry in pom file, as I have already added in java build path build fails with error's package com.abc does not exist
I want to know why it is failing as by adding entries in java build path in dynamic java project (not maven), it works fine and build gets created.