Re: How do I access all Job Configuration properties in my Plugin code?

2019-02-17 Thread felipesfaraco
Have you ever found out the solution to this? I was looking to access the 
Git steps configuration directly. 

On Sunday, June 29, 2014 at 10:14:12 PM UTC-7, Quadir Sha Kareemullah wrote:
>
> Hi,
>
> I would greatly appreciate if anyone can tell me how I can access all Job 
> Configuration properties in my Plugin code. I tried following snippet, but 
> *pdp* is returning *null*.
>
>  
>> ParametersDefinitionProperty pdp = 
>> this.project.getProperty(ParametersDefinitionProperty.class);
>
>  
>
>
> Here is little background, I am trying to dynamically set the branch name 
> that Git needs to build. In the Job Configuration, I enter 
> ${pull_req_src_branch} for the field "Branches to build Branch Specifier 
> (blank for 'any')". I want to set this value dynamically in my Plugin 
> code when the Jobs runs.
>
> Any help is greatly appreciated.
>
> Thanks
> Quadir
>  
>

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/71342d59-9d4a-44bf-871e-92b9f4b61538%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: How do I access all Job Configuration properties in my Plugin code?

2014-07-01 Thread Sandell, Robert
My idea was more around not using parameters but instead configure the git 
plugin to use your buildchooser to provide what to build, my assumption was 
that the rest of your plugin code had the necessary information needed for the 
buildchooser to use.
You can see examples of BuildChooser implementations on the wiki: 
https://wiki.jenkins-ci.org/display/JENKINS/Extension+points#Extensionpoints-hudson.plugins.git.util.BuildChooser
And here is one from my plugin: 
https://github.com/jenkinsci/gerrit-trigger-plugin/blob/master/src/main/java/com/sonyericsson/hudson/plugins/gerrit/trigger/hudsontrigger/GerritTriggerBuildChooser.java




Robert Sandell
Software Tools Engineer - SW Environment and Product Configuration
Sony Mobile Communications

From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-dev@googlegroups.com] On 
Behalf Of Quadir Sha Kareemullah
Sent: den 1 juli 2014 08:00
To: jenkinsci-dev@googlegroups.com
Subject: Re: How do I access all Job Configuration properties in my Plugin code?

Hi Robert,

Thanks for your reply. I was NOT able to figure out how to use BuildChooser to 
get all configuration properties of a Job (not Build). I would greatly 
appreciate if you can provide a sample code snippet.

Thanks
Quadir

On Monday, June 30, 2014 1:33:36 PM UTC+5:30, Robert Sandell wrote:
You could try and implement a BuildChooser: 
https://github.com/jenkinsci/git-plugin/blob/master/src/main/java/hudson/plugins/git/util/BuildChooser.java



Robert Sandell
Software Tools Engineer - SW Environment and Product Configuration
Sony Mobile Communications

From: jenkin...@googlegroups.com 
[mailto:jenkin...@googlegroups.com] On Behalf Of Quadir Sha 
Kareemullah
Sent: den 30 juni 2014 07:14
To: jenkin...@googlegroups.com
Subject: How do I access all Job Configuration properties in my Plugin code?

Hi,

I would greatly appreciate if anyone can tell me how I can access all Job 
Configuration properties in my Plugin code. I tried following snippet, but pdp 
is returning null.


ParametersDefinitionProperty pdp = 
this.project.getProperty(ParametersDefinitionProperty.class);


Here is little background, I am trying to dynamically set the branch name that 
Git needs to build. In the Job Configuration, I enter ${pull_req_src_branch} 
for the field "Branches to build Branch Specifier (blank for 'any')". I want to 
set this value dynamically in my Plugin code when the Jobs runs.

Any help is greatly appreciated.

Thanks
Quadir

--
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 jenkinsci-de...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
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 
jenkinsci-dev+unsubscr...@googlegroups.com<mailto:jenkinsci-dev+unsubscr...@googlegroups.com>.
For more options, visit https://groups.google.com/d/optout.

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How do I access all Job Configuration properties in my Plugin code?

2014-06-30 Thread Quadir Sha Kareemullah
Hi Robert,

Thanks for your reply. I was NOT able to figure out how to use BuildChooser 
to get all configuration properties of a Job (not Build). I would greatly 
appreciate if you can provide a sample code snippet.

Thanks
Quadir

On Monday, June 30, 2014 1:33:36 PM UTC+5:30, Robert Sandell wrote:
>
> You could try and implement a BuildChooser: 
> https://github.com/jenkinsci/git-plugin/blob/master/src/main/java/hudson/plugins/git/util/BuildChooser.java
>
>  
>
>  
>
>  
>
> *Robert Sandell*
>
> Software Tools Engineer - SW Environment and Product Configuration
>
> Sony Mobile Communications
>
>  
>
> *From:* jenkin...@googlegroups.com  [mailto:
> jenkin...@googlegroups.com ] *On Behalf Of *Quadir Sha 
> Kareemullah
> *Sent:* den 30 juni 2014 07:14
> *To:* jenkin...@googlegroups.com 
> *Subject:* How do I access all Job Configuration properties in my Plugin 
> code?
>
>  
>
> Hi,
>
>  
>
> I would greatly appreciate if anyone can tell me how I can access all Job 
> Configuration properties in my Plugin code. I tried following snippet, but 
> *pdp* is returning *null*.
>
>  
>
>  
> ParametersDefinitionProperty pdp = 
> this.project.getProperty(ParametersDefinitionProperty.class);
>
>  
>
>  
>
> Here is little background, I am trying to dynamically set the branch name 
> that Git needs to build. In the Job Configuration, I enter 
> ${pull_req_src_branch} for the field "Branches to build Branch Specifier 
> (blank for 'any')". I want to set this value dynamically in my Plugin 
> code when the Jobs runs.
>
>  
>
> Any help is greatly appreciated.
>
>  
>
> Thanks
>
> Quadir
>
>  
>
> -- 
> 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 jenkinsci-de...@googlegroups.com .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: How do I access all Job Configuration properties in my Plugin code?

2014-06-30 Thread Sandell, Robert
You could try and implement a BuildChooser: 
https://github.com/jenkinsci/git-plugin/blob/master/src/main/java/hudson/plugins/git/util/BuildChooser.java



Robert Sandell
Software Tools Engineer - SW Environment and Product Configuration
Sony Mobile Communications

From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-dev@googlegroups.com] On 
Behalf Of Quadir Sha Kareemullah
Sent: den 30 juni 2014 07:14
To: jenkinsci-dev@googlegroups.com
Subject: How do I access all Job Configuration properties in my Plugin code?

Hi,

I would greatly appreciate if anyone can tell me how I can access all Job 
Configuration properties in my Plugin code. I tried following snippet, but pdp 
is returning null.


ParametersDefinitionProperty pdp = 
this.project.getProperty(ParametersDefinitionProperty.class);


Here is little background, I am trying to dynamically set the branch name that 
Git needs to build. In the Job Configuration, I enter ${pull_req_src_branch} 
for the field "Branches to build Branch Specifier (blank for 'any')". I want to 
set this value dynamically in my Plugin code when the Jobs runs.

Any help is greatly appreciated.

Thanks
Quadir

--
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 
jenkinsci-dev+unsubscr...@googlegroups.com<mailto:jenkinsci-dev+unsubscr...@googlegroups.com>.
For more options, visit https://groups.google.com/d/optout.

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How do I access all Job Configuration properties in my Plugin code?

2014-06-29 Thread Quadir Sha Kareemullah
Hi,

I would greatly appreciate if anyone can tell me how I can access all Job 
Configuration properties in my Plugin code. I tried following snippet, but 
*pdp* is returning *null*.

 
> ParametersDefinitionProperty pdp = 
> this.project.getProperty(ParametersDefinitionProperty.class);

 


Here is little background, I am trying to dynamically set the branch name 
that Git needs to build. In the Job Configuration, I enter 
${pull_req_src_branch} for the field "Branches to build Branch Specifier 
(blank for 'any')". I want to set this value dynamically in my Plugin code 
when the Jobs runs.

Any help is greatly appreciated.

Thanks
Quadir
 

-- 
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 jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.