Re: Plugin InitMilestone

2016-01-21 Thread Vinodhini Vijay
On Thursday, 21 January 2016 20:50:37 UTC+5:30, Robert Sandell wrote: > > Have you tried @Initializer(after = *EXTENSIONS_AUGMENTED > * > )? > Yes .. But it didn't work.. > > /B > > On Thu, Jan 21, 2016 at 11

Re: Plugin InitMilestone

2016-01-21 Thread Jesse Glick
On Thu, Jan 21, 2016 at 5:22 AM, Vinodhini Vijay wrote: > I have created 2 Jenkins plugins. 1st plugin is dependent on 2nd plugin. > > I wanted to access 2nd plugin's properties file (bundled with 2nd Plugin > hpi) from the 1st Plugin You are probably trying to do something the wrong way, but you

Re: Plugin InitMilestone

2016-01-21 Thread Baptiste Mathus
Wouldn't it be maybe a bit cleaner to access this via a Java interface or something like this? Accessing a file *inside* another plugin feels a bit tighly coupled to me. 2016-01-21 16:20 GMT+01:00 Robert Sandell : > Have you tried @Initializer(after = *EXTENSIONS_AUGMENTED >

Re: Plugin InitMilestone

2016-01-21 Thread Robert Sandell
Have you tried @Initializer(after = *EXTENSIONS_AUGMENTED * )? /B On Thu, Jan 21, 2016 at 11:22 AM, Vinodhini Vijay wrote: > > > Hello Team > > I have created 2 Jenkins plugins. 1st plugin is dependent on 2nd plu

Plugin InitMilestone

2016-01-21 Thread Vinodhini Vijay
Hello Team I have created 2 Jenkins plugins. 1st plugin is dependent on 2nd plugin. I wanted to access 2nd plugin's properties file (bundled with 2nd Plugin hpi) from the 1st Plugin in a method which has this annotation @Initializer(after = PLUGINS_STARTED) But always I am getting FileNotF