I am trying to understand a package of java code (let's call it mainPackage), which has an import from another package(Let's call this commonUtility). I can see the import statement, but cannot see the dependency directly in the pom file. I just need to understand this to make a few changes in the commonUtility so that it can be reflected in my mainPackage jar.
for example I can see a import statement in the mainPackage class file
import com.training.tdw.commonUtility.transform;
So I am expecting to see
<dependency>
<groupId>com.training.tdw</groupId>
<artifactId>commonUtility</artifactId>
<version>1.0.1</version>
</dependency>
But it is not present. So how will i find out the ink between the two packages. Correct me if my understanding is wrong.