You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Developers
Hi all,
I am working on improving the Gitlab Plugins. The first plan is to move to a gitlab-api-pluginwhich provides Gitlab Java Apis rather than using the ones implemented inside the plugins codebase. This will be similar to github-api-plugin.
What is the advantage of wrapping an API inside a plugin over using Apis directly as a dependency?
If someone experienced with development of Github Api Plugin or similar, please take a look at our gitlab-api-plugin:
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jenkin...@googlegroups.com
The main advantage to using an API plugin is to allow the library to
be reused by other plugins without each plugin needing to maintain
updates to the dependencies manually. Instead, the API plugin is used
for those libraries which reduces maintenance burden, especially
whenever CVEs are discovered.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Dev
On Mon, Apr 29, 2019 at 12:38 PM Matt Sicker <msi...@cloudbees.com> wrote:
> The main advantage to using an API plugin is to allow the library to
> be reused by other plugins