I have a Java maven project that depends on 50 jars that is not in Central Maven Repo or in my organization's Nexus repository. I don't want to do mvn install:install-file ... as it will work for me but it won't work for others unless they also run this command and install all the jars in their local repo.
I can put all my jars in project lib folder and check it in. But I need to hard code the path in the pom.xml for these jars.
Is there a way to handle this?