Getting below warning while build.
I am using in pom.xml
<systemPath>${project.basedir}/lib/....jar</systemPath>
[WARNING] 'dependencies.dependency.systemPath' for ...:jar should not point at files within the project directory, ${project.basedir}/lib/....jar will be unresolvable by dependent projects @ line 25, column 30
Its resolved now by using <systemPath>${pom.basedir}/lib
/....jar in pom.xml
Anyone please explain, What is difference between ${pom.basedir} vs ${project.basedir} in pom.xml?