Re: Request for contributing Jenkins Statistics notification plugin

2015-07-05 Thread Harish T
Thank you Daniel. I will add wiki page. On Friday, July 3, 2015 at 7:33:27 AM UTC-7, Daniel Beck wrote: > > Done: > > - Created https://github.com/jenkinsci/statistics-notification-plugin and > added you as committer. > - Created component 'statistics-notification-plugin' in > issues.jenkins-c

Hosting a new Plugin - Jenkins Lint

2015-07-05 Thread Victor Martinez
Hi there, I've been working on some Jenkins automation to highlight when Jobs are not using some of the best practices I've already found/defined based on others or in my own experience. It's exactly the same approach as other lint detect tools: such as: checkstyle, pmd, puppet-lint, so on.

Re: Hosting a new Plugin - Plugin Stats

2015-07-05 Thread Victor Martinez
alright! Thanks for that Cheers On Sunday, 5 July 2015 14:31:51 UTC+2, Oleg Nenashev wrote: > > It’s better to fork the repo, develop a first integration version there > and then create a pull request. > In such case the plugin maintainer and other Jenkins contributors will be > able to help yo

Re: Hosting a new Plugin - Plugin Stats

2015-07-05 Thread Oleg Nenashev
It’s better to fork the repo, develop a first integration version there and then create a pull request. In such case the plugin maintainer and other Jenkins contributors will be able to help you by reviewing the pull request. A write access to this repo may be granted, but we should ask the main

Re: Hosting a new Plugin - Plugin Stats

2015-07-05 Thread Victor Martinez
Thanks for your comments, can you please give me write access to that repo? I'll be working on it. Thanks again On Sunday, 5 July 2015 10:22:19 UTC+2, Oleg Nenashev wrote: > > Hi Victor, > > In Jenkins project we encourage people to update existing plugins instead > of creating new ones. Your

Re: Plugin installed but not shown in the job configuration

2015-07-05 Thread Oleg Nenashev
It should appear if it is a clean install and there's no other dynamic load limitations. Otherwise you may need to restart Jenkins to finish the plugin installation. If the plugin does not appear after the restart, investigate Jenkins system logs понедельник, 22 июня 2015 г., 16:02:23 UTC+3 по

Re: Which extension point / Descriptor to start from

2015-07-05 Thread Oleg Nenashev
Do you consider using the side panel? It would be much easier than integrating into views. In such case you could use the RootAction extension point. The functionality could be useful together with Dynamic Search View plugin. On the other hand, it's better to use https://wiki.jenkins-ci.org/dis

Re: Workflow Plugin and Snippet Generator

2015-07-05 Thread Oleg Nenashev
Hi Gregory, It would worth if you send a link to the current code state in your local branch. AFAIK workflow plugin operates with SimpleBuildSteps supporting DataBoundConstructors, and there can be issues with plugins using newInstance(). I'm not sure it's related to your case. четверг, 2 июля

Re: FilePath and remote slave tasks.

2015-07-05 Thread Oleg Nenashev
Hi Paul, The simple answer is "there is no workspaces in Runs". This abstraction layer supports execution units, which do not use workspaces at all. It means that if you want to support other non-AbstractProject job types (e.g. workflow), you will need to perform some refactoring. In the case

Re: Jenkins Coverity Plugin Mainterner

2015-07-05 Thread Oleg Nenashev
Hi Franco, I've granted you the requested permissions (Hopefully you're able to sync-up with Ken internally). You should get an invitation to jenkinsci organization soon. Best regards, Oleg Nenashev понедельник, 22 июня 2015 г., 23:22:07 UTC+3 пользователь Franco Rossi написал: > > Is it poss

Re: Automatic Build for Jenkins / lib-jenkins-maven-embedder is broker / badly configured

2015-07-05 Thread Oleg Nenashev
Hello, I've reconfigured the template for library components: https://jenkins.ci.cloudbees.com/job/5ebbae13-b10f-4d61-9467-7938a71f68ec/ . Now it provides the configurable version of JDK via attributes. The default version has been set to JDK7, because currently there is no JDK6 on jenkins.ci

Re: The JenkinsCI CodeCamp & User Event Scandinavia 2015

2015-07-05 Thread Oleg Nenashev
Thumbs up! среда, 1 июля 2015 г., 13:17:54 UTC+3 пользователь Adam Henriques написал: > > Dear fellow Jenkins enthusiasts! > > For all of you who were'nt able to attended the JUC London, here are some > great news! > > For the 4th consecutive year Jenkins CI users and developers are invited > to

Re: Modifying view page with plugin

2015-07-05 Thread Oleg Nenashev
It would be helpful if you provide some descriptions and sketches of UI you want to create. Jenkins has many extension points allowing to create custom UIs (up to pure HTML), so there's no universal answer. четверг, 2 июля 2015 г., 10:13:45 UTC+3 пользователь Daniil B написал: > > Hello, > > I'm

Re: Sonar-plugin intialization error

2015-07-05 Thread Oleg Nenashev
It's better to Cc plugin owners when you address a particular plugin. BTW, you can find the answer in https://issues.jenkins-ci.org/browse/JENKINS-20988 четверг, 2 июля 2015 г., 15:06:51 UTC+3 пользователь Ivo Bellin Salarin написал: > > Good afternoon everybody, > > I think that the sonar-plu

Re: no parent set on ProjectType

2015-07-05 Thread Oleg Nenashev
It would be better if you post the code of your action somewhere. Seems your Item type does not reference the ItemGroup storing it. Actuallu it means that MyProjectType#parent is null after the restart. Probably, you have a wrong implementation of the onLoad() method. четверг, 2 июля 2015 г., 1

Re: ItemListener, onLocationChanged, modifying job property and saving. Result: after shutdown the modified property keeps the old value

2015-07-05 Thread Oleg Nenashev
Did you try to launch the code in the debugger? If it reaches the save() method, the project should be saved to XML file. You can check it contents on the disk. If the data is available there, the issue may be related to the loading procedure. More info is required to troubleshoot the issue w/o

Re: I'd like to take over maintenance of the GitHub OAuth Plugin

2015-07-05 Thread Oleg Nenashev
Hi, I've updated both JIRA components. Best regards, Oleg вторник, 30 июня 2015 г., 5:27:49 UTC+3 пользователь Sam Gleske написал: > > > > On Monday, June 29, 2015 at 10:26:12 PM UTC-4, Sam Gleske wrote: >> >> I'd like to take over the maintenance of the GitHub OAuth Plugin. I've >> reached ou

Re: Hosting a new Plugin - Plugin Stats

2015-07-05 Thread Oleg Nenashev
Hi Victor, In Jenkins project we encourage people to update existing plugins instead of creating new ones. Your plugin is not extremely big now, so I don't think the merge requires much efforts. In order to simplify this process, you can also keep backend implementations separately for a while.

Re: Plugin jobs configured to pick up findbugs and checkstyle reports

2015-07-05 Thread Oleg Nenashev
Kostya, the best way would be to update Jenkins parent POM and to publish results from it. BTW all plugins should be updated to the new parent version, which is not possible in particular cases суббота, 4 июля 2015 г., 17:14:51 UTC+3 пользователь Kanstantsin Shautsou написал: > > > > On Saturda