Re: Plugin wiki page problem - artifact/plugin id vs repo/issue URL

2016-02-10 Thread Bryson Gibbons
Since I had access to do so, and GitHub automatically redirects repos after they are renamed, I change the name of the GitHub repo to "negotiatesso-plugin" The Jira component could be renamed at any time; the old build job on the CloudBees Jenkins server can be handled according to whatever pol

Re: New Slack Plugin for Jenkins

2016-02-10 Thread Benjamin Lau
Hi Tommy, We don't do this with slack... but we do with HipChat. The trick for this was to enable Jenkins Parameterized Remote Trigger[1] and then setup our command in our hipchat bot[2] to make requests on the appropriate URL. It's super simple and flexible. Cheers, Ben [1] https://wiki.jenkins

Re: Cloudformation Plugin

2016-02-10 Thread Nathan Good
Will, I volunteered to be the new maintainer on that plugin just this last week. I was out for the rest of the week and am now just getting caught up. I will take a look at your pull request today and merge it so long as I don't see any issues. On Wed, Feb 10, 2016 at 12:32 PM William Soula < wil

Cloudformation Plugin

2016-02-10 Thread William Soula
I have opened a pull request fixing an issue in the jenkins cloudformation plugin, https://github.com/jenkinsci/jenkins-cloudformation-plugin/pull/18 The maintainer was initially very responsive and suggested several improvements to my pull request, which I implemented. It appears that he has bec

Re: Jelly: foreach items call with arguments problems/syntax help

2016-02-10 Thread Daniel Beck
My guess: The method is getAppItemsList, and you can only call it with appItemsList without parens or args. it.appItemsList OR it.getAppItemsList(…) BUT NOT it.appItemsList(…) On 10.02.2016, at 12:01, Darren Ball wrote: > Hi, > > I am attempting to do something like the following with a nest

Jelly: foreach items call with arguments problems/syntax help

2016-02-10 Thread Darren Ball
Hi, I am attempting to do something like the following with a nested set of foreach: * and it works, I can also pass arguments to test calls as well. Maybe I am missing something regarding the call structure. Any help in getting this sort of thing done or insight on how to pass an argument

Re: New Slack Plugin for Jenkins

2016-02-10 Thread Tommy Montingelli
Thanks Vincent. I tried, but nothing. Git is a very large project and it is hard to understand. Other ideas? Il giorno mercoledì 10 febbraio 2016 13:58:46 UTC+1, Vincent Latombe ha scritto: > > Hi Tommy, > > you could take a look at the git plugin which uses an > UnprotectedRootAction as entry

[Google Summer of Code 2016] - We're looking for mentors

2016-02-10 Thread Oleg Nenashev
Hi, As you probably know, at the last Jenkins Governance meeting we discussed the participation in Google Summer of Code 2016 . Since the initiative has

Re: Can you hide Tool Installations from the Global configuration?

2016-02-10 Thread James Richard
Is there a way to create a ToolInstallation without a descriptor? -- 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.co

Can you hide Tool Installations from the Global configuration?

2016-02-10 Thread James Richard
Hello Everyone, I am developing a custom plugin that currently requires 2 parts to be configured in the global configuration. 1 is the server URL that our plugin will connect to and the other is the Tool Installation of our CLI tool. We used the Tool Installation for our CLI configuration so Us

How to use Hetero-list as a multi-selectbox

2016-02-10 Thread mnpoonia
Can hetero-list be used as multi-select checkbox? If yes,how to use Hetero-list as a multi-select box to populate list from java and then send the selected data as List in my java DataBoundConstructor. -- You received this message because you are subscribed to the Google Groups "Jenkins Devel

Re: New Slack Plugin for Jenkins

2016-02-10 Thread Vincent Latombe
Hi Tommy, you could take a look at the git plugin which uses an UnprotectedRootAction as entry point for post-receive hook. https://github.com/jenkinsci/git-plugin/blob/master/src/main/java/hudson/plugins/git/GitStatus.java Vincent 2016-02-10 11:49 GMT+01:00 Tommy Montingelli : > Hi, > I want

New Slack Plugin for Jenkins

2016-02-10 Thread Tommy Montingelli
Hi, I want to write a Jenkins Plugin in Java that trigger a new build when a slash command is typed in Slack. When this appen, an HTTP POST request is sent at Jenkins URL. I know that i should extend the Trigger Extension Point and define an inner static class that extends the corresponding desc