-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for build-helper-maven-plugin #48
Comments
could you explain what do you want to get as result in repository? |
In my project I have multiple After a brief scan of the code it appears that the plugin could produce a zip artifact with a Thoughts? |
and why you don't use maven install plugin to install generated files into repository? for instance such codesnipet which installs two built executable files into reository ?
|
For the I will try and devote some time to coming up with a pull request, and hopefully it will provide more insight than I am able to convey in these comments. Cheers! |
standard deploy also can be used for such purposes imho
|
Yup, correct, you could have a block for the Thanks for the dialog, as I mentioned earlier I will try coming up with a pull request that attempts to show what I am looking for. |
…h boolean configuration flag `installAttached`
- Still rely on the custom mojos to perform the custom golang actions for the project. - Rely on the apache maven-install-plugin to perform the actions to install project artifacts to the local repo. - Rely on the apache maven-deploy-plugin to perform the deployment actions to place the project artifacts in a artifact repository.
Rather than saving generated artifacts by adding
maven-install-plugin
declarations, could you detect additional artifacts that are added to the project via the org.codehaus.mojo:build-helper-maven-plugin:attach-artifact plugin goal?The scenario I am interested in is a multi-platform build storing the generated binaries in the maven repo automatically when
mvn clean install
is invoked:It appears that the
maven-install-plugin:install-file
goal will add secondary files to the local repo, but I am not sure that it will handle thedeploy
lifecycle.The text was updated successfully, but these errors were encountered: