Re: build no.

2016-08-31 Thread Curtis Rueden
Hi Kashif, Have a look at the buildnumber-maven-plugin from mojohaus: http://www.mojohaus.org/buildnumber-maven-plugin/usage.html Regards, Curtis -- Curtis Rueden LOCI software architect - http://loci.wisc.edu/software On Tue, Aug 30, 2016 at 3:36 AM, Kashif BHATTI

build no.

2016-08-31 Thread Kashif BHATTI
for the POM.xml there is a parameter for buildNumber in the maven-cucumber-reporting part...is it possible to somehow have that be automatically populated from GitHub by picking up the build Number on my source code? Thanks.

Re: maven-cucumber-reporting Build failure

2016-08-31 Thread Kashif BHATTI
I was able to dig up a solution for now so please ignore this email for now. If I have any further questions I will reach back out again..hopefully not. Thanks for your help =) On Mon, Aug 29, 2016 at 5:07 PM, Kashif BHATTI wrote: > Hello everyone, > > I am running a

Getting error while taking the build using JenkinsJob

2016-08-31 Thread Yogesh.Sontakke
Hi Team, I have setup Jenkins job for our digital project and we are using maven Maven_3.3.1 version. When I take the build on my system it works fine but while taking the build using Jenkins getting below error. [ERROR] Failed to execute goal

Re: Maven Plugin and JSR330

2016-08-31 Thread Dan Tran
Hi Stuart Thanks for helping out. I have 3 mojos, sharing one singleton component which depends on another singleton component thru injection. All working now via both injection type ( after some cleanup) should I file a JIRA to enable JSR-250 support fo rmaven 3.4? looking forward to use it

Re: Maven Plugin and JSR330

2016-08-31 Thread Stuart McCulloch
Hi Dan, Constructor injection (and component injection) is working for me with Maven 3.3.9 if I follow the example in http://maven.apache.org/maven-jsr330.html Is your plugin code available somewhere? PS. at the moment Maven doesn’t enable container support for JSR-250 lifecycle, but it

Re: Maven Plugin and JSR330

2016-08-31 Thread Dan Tran
Hi Thomas, You are right!!! looking for how to fix this... The only thing working for me is field injection at MOJO. event The constructor injection ( as documented) at MOJO is not. Thanks -Dan On Wed, Aug 31, 2016 at 1:20 AM, Thomas Broyer wrote: > On Wed, Aug 31, 2016

Re: Maven Plugin and JSR330

2016-08-31 Thread Thomas Broyer
On Wed, Aug 31, 2016 at 8:43 AM Dan Tran wrote: > Hi > > I have a need to inject my jsr330 component into my plugins[1] and I > found 2 issues > > 1. @Inject under MOJO works, but my singleton component @PreDestroy never > got called > @PreDestroy is not part of JSR 330,

Maven Plugin and JSR330

2016-08-31 Thread Dan Tran
Hi I have a need to inject my jsr330 component into my plugins[1] and I found 2 issues 1. @Inject under MOJO works, but my singleton component @PreDestroy never got called 2. @Inject at my component does not work. I wonder if anyone able to get JSR330 fully working for your maven plugin