How do I check from within a Mojo if an artifact already exists in the local repository?
I'm installing large binaries into the local Maven repository and I need to know if they already exist before attempting to download them.
|
|
|
If you expect your artifacts being present in a remote maven repository, I'd suggest you simply use the copy mojo of the It will use normal maven resolution mechanism for retrieving artifacts so will not download something that is already in the local repository. In a plugin, when using maven 2 (not sure about maven3) you can use the mojo executor to call a mojo from within you code easily. |
|||
|
|
|
Solved with the help of http://docs.codehaus.org/display/MAVENUSER/Mojo+Developer+Cookbook
|
|||
|