Re: Rendering a describable in global config

2015-04-09 Thread Kanstantsin Shautsou
Describable binds to config.{groovy||jelly}. Describable must have getter methods in form 'getField()' for field that exists in Describable. On Thursday, April 9, 2015 at 4:13:12 PM UTC+3, Mads Nielsen wrote: Hey Everyone, I'm having some issues. I have a plugin which basically only has a

Re: @DataBoundConstructor with object in constructor

2015-04-09 Thread Ludovic Roucoux
Finally, I found a solution with the code of Stephen and some modifications in jelly files. So, I have two class *ZAProxyBuilder* and *ZAProxy* with two *config.jelly* respectively. In the first *config.jelly* file (i.e in the *ZAProxyBuilder* package), I include the other file with the

Re: docker-commons: plugin that centralizes docker configurations

2015-04-09 Thread Kanstantsin Shautsou
Frankly speaking credentials is the last thing that docker-plugin has issues with. Cloud API is actively changes in latest jenkins versions and it difficult to follow for Cloud plugins developers what is really critical and how it should be used with backward compatibility. Your experienced

Re: Rendering a describable in global config

2015-04-09 Thread Jesse Glick
On Thu, Apr 9, 2015 at 9:13 AM, Mads Nielsen m...@praqma.net wrote: The main plugin simply just extends Plugin and has a config.jelly Extending Plugin is semi-deprecated. Use GlobalConfiguration instead. -- You received this message because you are subscribed to the Google Groups Jenkins

Re: Releasing Plugin -

2015-04-09 Thread Kanstantsin Shautsou
Using latest core version you can thousand user installations from using new plugin version. Mark provided the best variant for setting new release-plugin version. On Apr 9, 2015, at 17:38, Robert Reeves robertericree...@gmail.com wrote: Thanks, Mark! I wound up bumping the parent version

Re: Rendering a describable in global config

2015-04-09 Thread Mads Nielsen
Hey Kanstantin, I have getters and setters for all the fields in my describable. Atleast i can see in the XML that is produced that i get them stored correctly...for example the MongoDB implementation has the follwing public class MongoProviderImpl extends NoSQLProvider { private String

Re: How long takes to get a feedback about posted issue

2015-04-09 Thread Christopher Orr
This is a question better suited to the jenkinsci-users mailing list. There is no overall response average time; this will vary wildly between the different plugins. -Chris On 09/04/15 11:12, Eugen Martynov wrote: Hi guys, I posted an issue yesterday

Re: Rendering a describable in global config

2015-04-09 Thread Mads Nielsen
Here you go: This is my describable: https://github.com/Praqma/nosql-plugin/blob/master/src/main/java/org/jenkinsci/plugins/nosqldb/MongoProviderImpl.java [image: ] Mads Nielsen Consultant m...@praqma.net +45 50 98 18 09

Re: Releasing Plugin -

2015-04-09 Thread Robert Reeves
Thanks, Mark! I wound up bumping the parent version to 1.580.1 and that fixed the problem. Thanks again! Robert -- 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

Re: @DataBoundConstructor with object in constructor

2015-04-09 Thread Jesse Glick
On Thu, Apr 9, 2015 at 10:55 AM, Ludovic Roucoux ludovic.rouc...@gmail.com wrote: Finally, I found a solution with the code of Stephen For the future go straight to ui-samples plugin, which contains complete working examples of these kinds of things. Not f:property, yet; file a PR to add such a

How long takes to get a feedback about posted issue

2015-04-09 Thread Eugen Martynov
Hi guys, I posted an issue yesterday https://issues.jenkins-ci.org/browse/JENKINS-27837 However I did not get any reaction yet. I wonder what is average time to get a reaction. -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To

Rendering a describable in global config

2015-04-09 Thread Mads Nielsen
Hey Everyone, I'm having some issues. I have a plugin which basically only has a global configuration that provides access to a mongo database other plugins can make use of to store data with via a simple interface. I am having an issue with the rendering of the configuration screen The main

Re: Rendering a describable in global config

2015-04-09 Thread Kanstantsin Shautsou
Link to source java and UI files will be appreciated :) On Apr 9, 2015, at 17:12, Mads Nielsen m...@praqma.net wrote: Hey Kanstantin, I have getters and setters for all the fields in my describable. Atleast i can see in the XML that is produced that i get them stored correctly...for

Re: Releasing Plugin -

2015-04-09 Thread Jesse Glick
On Tue, Apr 7, 2015 at 6:47 PM, Mark Waite mark.earl.wa...@gmail.com wrote: If you're dependent on too old a version of the parent pom, that older parent pom may be specifying an old version of the release plugin. …which does not work with newer versions of Git, whereas the newer plugin does.