Plugin BuildTriggerBadge - PR adding new column displaying last build causes

2013-07-23 Thread mpapo - Michaël Pailloncy
Hi, A PR has been proposed in BuildTriggerBadge plugin to add a column on list views displaying causes of the last build : https://github.com/jenkinsci/buildtriggerbadge-plugin/pull/3#issuecomment-21091089 For me, this column could be added to this plugin, but it could also be added to Extra

jenkinsci account

2013-07-23 Thread Karoly Sepsy
Hi, I was trying to add a wiki page for RapidDeploy plugin on jenkinsci.org, but unfortunately I couldn't create an account by myself. It says contact the dev list. Here's what details I want to submit in case you don't have it pending: User ID: sepsyk First Name: Karoly Last Name: Sepsy

dynamic property key with jelly

2013-07-23 Thread RCR
Hi,   Is there anyway to get a label from **.jelly or **.properties with a dynamic key like :   ${%WebLogicPreRequisteStatus.${result.check}}   Thanks -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop

Re: dynamic property key with jelly

2013-07-23 Thread Stephen Connolly
${%WebLocicPrerequisteStatus(result.check)} which assumes that your property file has something like WebLocicPrerequisteStatus: The webLogic pre-req status result is {0} so there On 23 July 2013 11:03, RCR r...@orange.fr wrote: Hi, Is there anyway to get a label from **.jelly

Re: jenkinsci account

2013-07-23 Thread Larry Shatzer, Jr.
Created. It should have sent you an email with your password. On Tue, Jul 23, 2013 at 3:43 AM, Karoly Sepsy karoly.se...@midvision.comwrote: Hi, ** ** I was trying to add a wiki page for RapidDeploy plugin on jenkinsci.org, but unfortunately I couldn't create an account by myself. It

Re: Two waiting pull requests - please review or consider granting commit access

2013-07-23 Thread Łukasz Jąder
My post might be a little confusing: I was asking for redmine-plugin commit access. Regarding my PR for buildtriggerbadge-plugin I found this new column usefull in my SNAPSHOT version so why not share it :). W dniu niedziela, 21 lipca 2013 11:27:04 UTC+2 użytkownik Baptiste MATHUS napisał:

Re: Please fork rapiddeploy-jenkins plugin to jenkinsci

2013-07-23 Thread Karoly Sepsy
On 7/22/2013 6:17 PM, Ulli Hafner wrote: Done: https://github.com/jenkinsci/rapiddeploy-plugin Welcome aboard! Ulli Am 22.07.2013 um 16:12 schrieb Karoly Sepsy karoly.se...@midvision.com mailto:karoly.se...@midvision.com: Hi, We've recently produced the first version of our

Re: Two waiting pull requests - please review or consider granting commit access

2013-07-23 Thread Łukasz Jąder
Thanks Kohsuke, I hope my improvements will make some people happy :). W dniu wtorek, 23 lipca 2013 03:11:23 UTC+2 użytkownik Kohsuke Kawaguchi napisał: In the mean time I added you as a committer. On 07/17/2013 10:48 AM, Łukasz Jąder wrote: Hi, I've made 2 pull requests which provide

Re: Request commit access to tfs-plugin repo

2013-07-23 Thread Olivier Dagenais
Hi Ullrich, You left a comment on my pull requesthttps://github.com/jenkinsci/tfs-plugin/pull/12#pullrequestreviewcomment-5324383concerning the text of the /project/parent/groupId element. I tried the Jenkins Plugin Skeleton Generatorhttp://plugin-generator.jenkins-ci.org/ and it gave me a

Re: How to extend FreeStyleProject?

2013-07-23 Thread Jesse Glick
On 07/22/2013 08:53 PM, Kohsuke Kawaguchi wrote: I'll add a comment to clarify that so that people won't copy a bad example. Or just add a processor which issues a warning on such usages (unless an appropriate @SuppressWarnings is provided). Not sure if the warning would apply to any use of

Re: NoClassDefFoundError: com/google/common/cache/CacheBuilder

2013-07-23 Thread Jesse Glick
On 07/22/2013 09:13 PM, Kohsuke Kawaguchi wrote: My guess is that your plugin depends on Guava directly or indirectly, overwriting the version that Jenkins core uses. And Stephen Connolly found that attempting to do this does not work. (Specifically getting a NCDFE on CacheBuilder, in fact.)

Re: How to extend FreeStyleProject?

2013-07-23 Thread Mengqi
Hi Kohsuke: Thank you so much for your response! The reason why I can't extend from Project is because I want to use a certain BuildWrapper, but the BuildWrapper is only applicable to a instance of FreeStyleProject or MatrixProject. And if I just ' put @Extension on my DescriptorImpl class',

SSH slaves broken ?

2013-07-23 Thread Nigel Magnay
Anyone on -dev know? Our jenkins installation gets very, very confused. Basicalyl jobs start, allegedly on (ssh) slave nodes - but when you examine them - no process on remote host, no log file, nothing... --- Further diagnosis: - the project view shows two jobs building. But the main view

Re: NoClassDefFoundError: com/google/common/cache/CacheBuilder

2013-07-23 Thread Stephen Connolly
On Tuesday, 23 July 2013, Jesse Glick wrote: On 07/22/2013 09:13 PM, Kohsuke Kawaguchi wrote: My guess is that your plugin depends on Guava directly or indirectly, overwriting the version that Jenkins core uses. And Stephen Connolly found that attempting to do this does not work.

Re: NoClassDefFoundError: com/google/common/cache/CacheBuilder

2013-07-23 Thread Jesse Glick
On 07/23/2013 03:55 PM, Stephen Connolly wrote: Here is my list of dependencies that should *NOT* be exposed by Jenkins: - BouncyCastle (top if the list) - ASM (before they got their act together... Even still not sure) - Guava Would I guess suffice to shade these? But then we have to deal

Re: NoClassDefFoundError: com/google/common/cache/CacheBuilder

2013-07-23 Thread Stephen Connolly
It would suffice to exclude them from the plugin's classloader. Shading only moves the problem... unless we shade like I shade bouncycastle for cloudbees-license (i.e. into a package name that includes the version of the dependency) Fundamentally when adding a dependency to core we need to either

Re: NoClassDefFoundError: com/google/common/cache/CacheBuilder

2013-07-23 Thread Jesse Glick
On 07/23/2013 07:02 PM, Stephen Connolly wrote: unless we shade like I shade bouncycastle for cloudbees-license (i.e. into a package name that includes the version of the dependency) That is what I meant. -- You received this message because you are subscribed to the Google Groups Jenkins

Registering an @Extension class from Groovy script?

2013-07-23 Thread Hugh Perkins
I just discovered the Groovy script page, ie http://localhost:8080/jenkins/script . It's awesome! It's very good for prototyping code, since it doesn't need a Jenkins restart. Question, how can I go about registering an @Extension class that I create in the Groovy script page? I defined a

Re: Registering an @Extension class from Groovy script?

2013-07-23 Thread Jesse Glick
On 07/23/2013 08:07 PM, Hugh Perkins wrote: Question, how can I go about registering an @Extension class that I create in the Groovy script page? I defined a class as follows: jenkins = jenkins.model.Jenkins.getInstance() @hudson.Extension public class MyGroovyListener extends

How to rename incoming connected computers?

2013-07-23 Thread Hugh Perkins
I want to create a plugin to work with EC2 Windows instances. The current EC2 plugin works for linux instances as follows, I think: - starts instance on ec2 - gets image name from ec2, eg i-123456 - creates node with instance name as postfix - connect to instance over ssh, and launch the slave

Re: How to rename incoming connected computers?

2013-07-23 Thread Hugh Perkins
(Although, I see that another way to achieve the same goal is that the EC2 windows instance can get hold of its instance-id from http://169.254.169.254/latest/meta-data/instance-id , so one could do: - an ec2 plugin starts ec2 windows instance - when it starts, gets the instance id, and creates an