Re: Request to host plug-in: Flaky Tests Handler

2014-08-04 Thread Qingzhou Luo
Thanks for supporting, Bruno. Still waiting for approval.. On Saturday, August 2, 2014 12:02:04 PM UTC-7, Bruno Meneguello wrote: > > Amazing idea! In my company we have developed a RunConfiguration to do > exactly that and implemented a plugin to do the same thing (but haven't > opened it becau

Re: Workflow plugin - Questions, Bugs and Features

2014-08-04 Thread Sagi Sinai-Glazer
Hi Jesse, Thanks for the swift response. I've commented on a few of your remarks below. Also - I see that you've merged pull #8 for the plugin - are you updating the docker image demo file to reflect the new changes? Thanks, Sagi > > How can I dynamically run a function/closure with different

Re: Commit access for the Naginator Plugin

2014-08-04 Thread Ulli Hafner
Done. Welcome aboard! Ulli Am 04.08.2014 um 16:06 schrieb Tomer Galun : > Hi! > > In the last few weeks I've worked on a feature for the Naginator plugin > (Which add the option to auto rerun failed build). > This feature allow to rerun only the failed parts in a matrix. I also fixed > some

Re: websphere-deployer-plugin patches

2014-08-04 Thread Ulli Hafner
All dependencies need to be specified in the pom, see http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html. Am 04.08.2014 um 11:21 schrieb Michael Nothhard : > Hi all, > > I've recently become active in the Jenkins community(due to being tasked with > implement

Re: ownership-plugin patch

2014-08-04 Thread Ulli Hafner
Added you as a committer. Please go ahead and merge your changes by yourself… Am 04.08.2014 um 13:02 schrieb Ilia Meerovich : > Hi all, > > I've recently become active in the Jenkins community. > I've submitted a pull request > (https://github.com/jenkinsci/ownership-plugin/pull/23#issuecommen

Re: How to programmatically access the POM version number

2014-08-04 Thread Pratik Dam
maybe u can use ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest(); configuration.setProcessPlugins( false ); configuration.setRepositorySession( session ); org.apache.maven.artifact.Artifact artifact = new org.apache.maven.artifact.DefaultArtifact(groupId, artifactId, ver

Re: How to programmatically access the POM version number

2014-08-04 Thread pallen
Found a BUG in the digit(index) method in hudson.util.VersionNumber. The item value never gets updated, so you only get the first entry back regardless of the index. On Monday, August 4, 2014 2:30:29 PM UTC+1, pallen wrote: > > Jenkins.getInstance().getUpdateCenter().getPlugin("p4" > ).getInst

Commit access for the Naginator Plugin

2014-08-04 Thread Tomer Galun
Hi! In the last few weeks I've worked on a feature for the Naginator plugin (Which add the option to auto rerun failed build). This feature allow to rerun only the failed parts in a matrix. I also fixed some issues. I did a pull request more then a month ago, and didn't get any response from t

Re: Plugin that generates Jobs based on a template

2014-08-04 Thread Jesse Glick
On Thu, Jul 31, 2014 at 5:45 PM, Karthik V S wrote: > I would like to check whether there exists any plugin that matches the > following use case By the way, Jenkins Enterprise by CloudBees includes a Templates plugin that solves this class of problem somewhat differently. What you described is t

Re: Determining the consequences of starting a job from the REST API

2014-08-04 Thread Salim Fadhley
Thanks again! I am still struggling to get parameterized builds that include files and non-file parameters working. Are files handled in a different kind of way to regular parameters? On 4 Aug 2014 14:48, "Jesse Glick" wrote: > On Sun, Aug 3, 2014 at 2:52 PM, Salim Fadhley > wrote: > > Accordin

Re: Plugin id for Windows Slaves Plugin

2014-08-04 Thread Jesse Glick
On Thu, Jul 31, 2014 at 4:04 AM, Fredrik Persson wrote: > I had specified the old groupId 'org.hudsonci.plugins' > where it was called windows-slaves-plugin I do not know what this is; perhaps from post-fork Hudson. -- You received this message because you are subscribed to the Google Groups "

Re: Determining the consequences of starting a job from the REST API

2014-08-04 Thread Jesse Glick
On Sun, Aug 3, 2014 at 2:52 PM, Salim Fadhley wrote: > According to the documentation parameters for builds need to get submitted > as form-fields, simple enough but I also notice that the Build with > Parameters form submits an additional hidden JSON encoded form field. Is > that actually used fo

Re: How to programmatically access the POM version number

2014-08-04 Thread pallen
Jenkins.getInstance().getUpdateCenter().getPlugin("p4" ).getInstalled().getPlugin().getWrapper().getVersion(); gives: 1.0.10-SNAPSHOT (private-08/04/2014 14:27-pallen) Seems convoluted, but does the job. Thanks for the hint. Paul On Monday, August 4, 2014 2:21:49 PM UTC+1, pallen wrote: > > I

Re: How to programmatically access the POM version number

2014-08-04 Thread domi
sorry, I was not quite right - its not the updatecenter, but the pluginmanager: PluginWrapper wrapper = Jenkins.getInstance().getPluginManager().getPlugin("p4"); On 04.08.2014, at 15:21, pallen wrote: > I can get this far... > > Jenkins.getInstance().getUpdateCenter().getPlugin("p4") > > bu

Re: How to programmatically access the POM version number

2014-08-04 Thread pallen
I can get this far... Jenkins.getInstance().getUpdateCenter().getPlugin("p4") but can't find a getWrapper() On Monday, August 4, 2014 1:57:08 PM UTC+1, Dominik Bartholdi wrote: > > As this should always match the plugin version, you can do something like > this: > > *Jenkins.getUpdateCenter().g

Re: How to programmatically access the POM version number

2014-08-04 Thread domi
As this should always match the plugin version, you can do something like this: Jenkins.getUpdateCenter().getPlugin("p4").getWrapper().getVersion() ...just out of my head - please check concrete method names... Domi On 04.08.2014, at 14:52, pallen wrote: > In my POM I specify the plugin's v

How to programmatically access the POM version number

2014-08-04 Thread pallen
In my POM I specify the plugin's version, e.g. p4 > 1.0.9 > hpi I would like to access the String "1.0.9" in my code; something like this: > this.getClass().getPackage().getImplementationVersion(); I have tried adding the "maven-jar-plugin" as per http://stackoverflow.com/questions/36974

Re: How and when to use plug-in defined job properties

2014-08-04 Thread yoram
After reading some more, I think I can simplify my question... I have a class that extends Cloud and overrides Cloud.canProvision and Cloud.provision. Inside my implementation of canProvision and/or provision I want to access some information on the build and the job that triggered the call to

ownership-plugin patch

2014-08-04 Thread Ilia Meerovich
Hi all, I've recently become active in the Jenkins community. I've submitted a pull request (https://github.com/jenkinsci/ownership-plugin/pull/23#issuecomment-50122357) 11 days ago. We want to see coowner email in jenkins UI so I prepared this patch. Can somebody review it? and if it is ok - m

websphere-deployer-plugin patches

2014-08-04 Thread Michael Nothhard
Hi all, I've recently become active in the Jenkins community(due to being tasked with implementing it for work). I've submitted a pull request but haven't received a response except the automated message saying that my code didn't compile. This failure to compile is expected due to some JARs

Intellij Developer License Renewal

2014-08-04 Thread Stefan Wolf
Hi, the Intellij License for the Jenkins project expired. Is the renewal already under way? Best regards, Stefan -- 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 e

Re: Save authentication from Kerberos Single Sign On filter

2014-08-04 Thread Joakim Ahle
Den lördagen den 2:e augusti 2014 kl. 03:57:57 UTC+2 skrev Jesse Glick: > > On Mon, Jul 21, 2014 at 5:18 AM, Joakim Ahle > wrote: > > I'm trying to write a filter for Kerberos (SSO) authentication. > > > > I have a class KerberosFilter that implements Filter. > > Are you quite positive you do

Re: How to deactivate some logs

2014-08-04 Thread Arnaud Héritier
Rolling back to 1.554.3 remove the log. I don't understand which change in core can produce this side-effect on crowd plugin / httpclient On Fri, Aug 1, 2014 at 10:48 AM, Arnaud Héritier wrote: > ok sadly this morning I discover that it wasn't a good idea to hide this >

How to hook of opening job configuration page?

2014-08-04 Thread addict . vim
Hi, folks. I want to hook of opening job configuration page(?) and build started(RunListener) to perform some upgrade routines to new plugin data. Currently I have hooked job_loaded initialiser event and traverse all jobs - I looking for better way to perform upgrade since this way can drastica

Re: [new plugin] Hosting for Gitorious WebHook Plugin

2014-08-04 Thread Sebastian Heuer
Sounds reasonable! Fine with me :) -- 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 htt

How and when to use plug-in defined job properties

2014-08-04 Thread yoram
Hello, I'm writing a Cloud plugin for Jenkins. The plugin manages in-house resource management system and it dynamically build slaves on temporarily leased resources. The plugin extends Cloud (ClustersCloud extends Cloud) , Slave, RetentionStrategy etc... and in general, works as fine. It creat