Hello All, I had to add the following settings to my .m2 settings.xml file to make the build work in my local system.
<profile> <id>snapshot.apache</id> <repositories> <repository> <id>central</id> <url>https://repository.apache.org/content/repositories/snapshots/</url> </repository> </repositories> </profile> If behind a proxy then proxy settings needs to be added. <proxies> <proxy> <id>local</id> <active>true</active> <protocol>https</protocol> <host>xxxx</host> <port>yyyy</port> <nonProxyHosts>*.corp|localhost*</nonProxyHosts> </proxy> </proxies> Thanks, Kind Regards Chandan VA
