A possible solution is to clean up your local repository, tell Maven to download all the dependencies and dependencies of the plugin on your project and make it ZIP.
To clear the local repository, you can simply delete the {user.home}/.m2/repository folder. Then you can use the dependency:go-offline target:
A goal that resolves all project dependencies, including plugins and reports and their dependencies.
mvn dependency:go-offline
This will download everything your project depends on, and make sure that nothing will be loaded during subsequent builds.
Then you can simply create a ZIP {user.home}/.m2/repository and send it to the Q / A team. They will need to unzip it in their own {user.home}/.m2/repository in order to be able to create the project.
source share