Re: Jenkins Board & Officer Elections 2019

2019-09-11 Thread Michael Neale
+1 makes sense and great timing. On Thursday, September 5, 2019 at 6:38:22 AM UTC+10, Tracy Miranda wrote: > > Hi all, > > As you may or may not know Jenkins project is run by a Governance Board > with support from a set of Officers. > > While a process has been set out for elections we are

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Mez Pahlan
> Have you tried just adding a `provided`-scope dependency on that, as is suggested for old mojo versions, rather than configuring `maven-compiler-plugin`? Brilliant! Thanks this did the trick. I removed the whole build block and added the dagger-compiler as a provided dependency and now

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Jesse Glick
On Wed, Sep 11, 2019 at 4:19 PM Mez Pahlan wrote: > I tried removing the following from my POM which had the effect of making my > plugin visible again in the snippet generator. > > > > > org.apache.maven.plugins > maven-compiler-plugin > >

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Mez Pahlan
I tried removing the following from my POM which had the effect of making my plugin visible again in the snippet generator. org.apache.maven.plugins maven-compiler-plugin

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Matt Sicker
On Wed, Sep 11, 2019 at 2:35 PM Mez Pahlan wrote: > > As for running an annotation processor in a plugin, isn't that how > > @MetaInfService, @Indexed, @Restricted, and the like, are handled at > > compile time? > > Errr.. pass. I don't know about these. Are you saying I should use these >

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Mez Pahlan
Hi Slide Good question. They have been like that since before this branch of the plugin I am working on. Do you think I've not got the correct ones? Or they're in the wrong scope? On Wednesday, 11 September 2019 20:22:21 UTC+1, slide wrote: > > Are all the required plugins installed? I noticed

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread 'Gavin Mogan' via Jenkins Developers
The pipeline steps are annotations symbols right? @Extension for the step, and @Symbol for the short name Would an extra annotation parser cause any issue? I would guess they are non destructive and able to overlap quite easily. What error are you getting when you are trying to use steps? Also

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Mez Pahlan
Hi Matt I don't have any experience with Guice but do with Dagger 2. I did try and understand the differences but there wasn't a lot of guidance on how to use it within Jenkins so I started to implement the Dagger 2 alternative. It worked in the IDE in the sense that it compiled correctly and

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Slide
Are all the required plugins installed? I noticed you had several items marked as test scope in the pom.xml. On Wed, Sep 11, 2019, 12:17 Mez Pahlan wrote: > Thanks for the answers Jesse! > > > Try specifically: mvn clean hpi:run > > Same issue. Builds fine no obvious errors in the terminal

Re: Jenkins Board & Officer Elections 2019

2019-09-11 Thread Marky Jackson
This is such great news and very welcomed in the community. Thanks for all the hard work that went in to this thus far and what is to come! > On Sep 11, 2019, at 12:19 PM, Tracy Miranda wrote: > > Hi all, > > I'm happy to report we have just concluded the governance meeting and there > was

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Mez Pahlan
Thanks for the answers Jesse! > Try specifically: mvn clean hpi:run Same issue. Builds fine no obvious errors in the terminal output and Jenkins starts normally. Plugin is listed in the list of installed plugins but I cannot use it in a Pipeline or Freestyle job. > Why? This would be

Re: Jenkins Board & Officer Elections 2019

2019-09-11 Thread 'Gavin Mogan' via Jenkins Developers
It sounds like a solid plan to me, +1 On Wednesday, September 11, 2019 at 9:44:28 AM UTC-7, Kohsuke Kawaguchi wrote: > > Just wanted to chime in and say this is all great and much needed. I have > discussed this offline with Tracy and I'm really looking forward to it. > > On Tue, Sep 10, 2019

Re: hpi:run not installing plugin..... half installed?

2019-09-11 Thread Jesse Glick
On Wed, Sep 11, 2019 at 3:20 AM Mez Pahlan wrote: > I've looked at the local work directory in my IDE that is created when > hpi:run is executed and I can see a file called appcenter.hpl but there isn't > an expanded folder called appcenter in the way that other plugins have > expanded

Re: Using StaplerRequest to configure a plugin?

2019-09-11 Thread Vlad Gorbunov
Try to use StaplerRequest req = org.kohsuke.stapler.Stapler.getCurrentRequest() -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: ANN: Support of plugin docs from GitHub on plugins.jenkins.io (WEBSITE-406)

2019-09-11 Thread Oleg Nenashev
Hi all, Just few updates here: - Over the last week 29 plugins were migrated to GitHub documentation sources. Some of them are waiting for release, but there is a good trend - Few examples: Git, Git Client, JobDSL, Kubernetes, Gradle, Warnings NG, Role Strategy, Mailer, etc.

hpi:run not installing plugin..... half installed?

2019-09-11 Thread Mez Pahlan
Hi there I am trying to test my plugin using hpi:run which builds and compiles with no errors but I can't see my plugin in the list of plugins when using the Snippet Generator. I can see it in the list of installed plugins in the Plugin Manager but it is also not available for use in a