How can i make a project jar release and maven repository strucuture(md5hash,distribution pom,etc) to put this in my own repository? Maven have a plugin to do it? Note, i need to generate this structure in my local machine, i don’t have CI and others to do it!
Hopes!!!
Check the deploy plugin, I think this is what you’re looking for. Quoting the documentation:
You’ll need to declare a
<distributionManagement>element to use it, something like this:Where the url can be a “local”
file://.And if the question is about installing a (third party) jar in your local repository (the question is not totally clear), have look at the Maven Install Plugin,
install:installandinstall:install-fileboth admit acreateChecksumoptional parameters.