I have a Maven plugin that takes a groupId, artifactId, and version in its confiugration.
I want to be able to download that artifact from the remote repositories and copy the file ...
How to use the Maven's Netbeans Module plugin to create an autoupdate site as an artifact ?
I can see the files of the auto-update site been generated in the target/ directory, ...
[Edit] The orginal question (below) is solved. I need to call
mvn package appassembler:assemble
instead of
mvn package
mvn appassembler:assemble
Question: Why is there a difference?
[original]
I am trying to use the maven ...