-
Notifications
You must be signed in to change notification settings - Fork 78
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
Add an option <extraArgs> to let user pass custom parameters to protoc command #79
Conversation
…otoc command That way we can use all available protoc plugins with their custom options
Any chance on getting this into a new release? |
Also curious on this update. Really love to have this so I can configure NullAway to not scan generated classes |
Hi, okay it seems that this project is no longer maintained, I will fork it and host it on maven myself. @nguyenAn1201 @bfmyr4 sorry for the delay, I will ping you when it's ready if you still need it :) |
Hi @sebastienvermeille , are you intending to become the new maintainer if this project, and by that review and merge PRs? If so I applaud you, and we're happy to switch to your releases when available. Cheers |
@seime Yes it's on my plans but unfortunately lack a bit of time. If you need this PR code in your projects I hosted it already on maven central:
|
… different IDE, OS That way contributors don't push undesired files by accident
…of the plugin That way they don't get annoyed for issues not related to their responsibility
…of the plugin That way they don't get annoyed for issues not related to their responsibility
That way we no longer have any strong link with the xolstice code anymore (avoid confusion)
Take ownership
Adapt for gh-pages and adapt versions changelog
Integrate sonarqube analysis, hide unused ribbon yet
Integrate sonarqube analysis, hide unused ribbon yet
…er to get own badges for this project Remove old CI stuff, will redo it using github actions
Replace Charset.forName() with constants UTF_8
Thanks @sebastienvermeille , we have switched to your fork. Looking forward to next releases! |
@sebastienvermeille would you like to officially take over the project as a principal committer? |
@sergei-ivanov yes would be great as it's a central lib for many other projects I would like to do that for sure. |
Add an option to let user pass custom parameters to protoc command
That way we can use all available protoc plugins with their custom options
Applicable Issues
Fixes #61 #77
Description
Add configuration (optional) which is appended in the the
protoc
command invoked by the maven plugin.This way we can easily address the issue of wanting to pass some specific parameters to protoc when running the plugin.
In my case I needed to pass some specific plugin arguments:
This way I can pass
--protoc-gen-doc_opt=markdown,README.md
and everything works fine.Happy to be able to contribute to a such great project! I stay available for more assistance on it and to discuss it of course thank you 👍