I am working on multi module project with one parent and 2 chils. . A is parent , B and C are child modules. B is dependent on C.
The project build is success locally.. but in jenkins Build is success for only parent and child module C and its failure for module B.
For module B which is dependent on C, its checking the file imports of C in package B.
EX: import com.example.C.config.appconfig;
Jenkins is checking that file as "B/src/java/AppConfig"
But it should check as the "C/src/java/AppConfig"
As the build is success for A and C respositories they are pushed Nexus Artifacts as well, but still its recognising the same way.Please suggest.