Re: After 1.451 - 1.456 upgrade, jobs are not dequeueing

2012-03-29 Thread Vincent Latombe
...@weiss.name wrote: Super! Thanks. -P On Wed, Mar 28, 2012 at 7:56 AM, Vincent Latombe vincent.lato...@gmail.com wrote: I've made a fix for this, just waiting to be merged : https://github.com/jenkinsci/jenkins/pull/419 Vincent 2012/3/28 Daniel Tkatch daniel.tka...@smeet.com here

Re: Re: JIRA 12854

2012-04-13 Thread Vincent Latombe
Hello, I believe the current hudson.tasks.LogRotator could be made an extension point and let you implement whatever logic/UI you need. Vincent 2012/4/12 andre.gr...@schneider-electric.com I send the pull request for winstone. Now I got another question. I want to make the cleanup of

Re: Non-resolvable parent POM

2012-05-24 Thread Vincent Latombe
Hi Mikael, the glassfish repository is no longer valid (I think this has been updated in a plugin parent pom some time ago, but I don't remember which exact version) An alternative is to declare http://repo.jenkins-ci.org/public as a mirror for m.g.o-public in your settings.xml mirrors

Re: Cannot add environment variables in plugin?

2012-08-21 Thread Vincent Latombe
Hi, it should be called at least when the job is built. Vincent 2012/8/21 ThomasBrouwer thomas.a.brou...@gmail.com Hi Vincent, Thanks for the reply! Unfortunately hpi:run doesn't work well for me, just gives me weird Java errors. Probably something with the network messed up, too much

Re: Display name when using LDAP authentication

2012-08-23 Thread Vincent Latombe
Hello Yves, it looks like UserNameResolver is never called from anywhere (at least from core). IMO it should be called in User#get(String, boolean). Vincent 2012/8/23 Yves Langisch y...@langisch.ch Anyone please? - Yves On 11.08.2012 15:27, Yves wrote: Hi, I've setup LDAP

Re: ISSUE 14772, I made a patch for

2012-08-30 Thread Vincent Latombe
Hi, from what I see it has been merged when trunk was 1.480-SNAPSHOT, so it will be in 1.480. Vincent 2012/8/30 pgdad pgdad...@gmail.com I see that 1.479 was release and that it does not include this change. Did I somehow mess up the pull request (such as request it to be merged to the

Re: CLI option /Groovy script to wipe out work space

2012-08-31 Thread Vincent Latombe
You should call def hi = hudson.model.Hudson.instance hi.getItemByFullName(JobName).doWipeOutWorkspace() it will perform the same action as clicking on the link in the UI. Vincent 2012/8/31 cjo cjo.john...@gmail.com If you want the SCM to remove the clearcase view you will need to

Re: Downstream Build on a Schedule

2012-09-11 Thread Vincent Latombe
Hello, Take a look at http://wiki.jenkins-ci.org/display/JENKINS/BuildResultTrigger+Plugin Vincent 2012/9/11 Sharkannon sharkan...@gmail.com I've searched but maybe I'm blind. I'm looking for a plugin or a way to be able to build downstream projects on a schedule. Basically I have a

Re: Lazy loading build records

2012-09-21 Thread Vincent Latombe
Hello, I agree with Baptiste, it would be great to also allow unloading of builds, this would reduce the overall heap usage and maybe allow to keep more builds per job. Vincent 2012/9/21 Baptiste MATHUS bmat...@gmail.com That's an absolutely great news! Congrats again Kohsuke. Seeing this

Re: Passing variables between plugins?

2013-02-26 Thread Vincent Latombe
Hi, you can attach an Action object to the build in the first buildstep with the data that you need to share, then retrieve it in the second buildstep. Hope this helps, Vincent 2013/2/26 Stéphane Bruckert stephane.bruck...@gmail.com Hello, I'm developing two builders: - the first one is

Re: jenkins debugging with eclipse (Windows)

2013-06-05 Thread Vincent Latombe
Hi, try with mvn clean hpi:run, see if it works better. This is a common problem when working with Eclipse; the eclipse compiler doesn't generate the metadata required by Jenkins framework to load your plugin, and since the .class files already exist, javac is not called, so the metadata cannot

Re: Can anyone provide the configure-entries.jelly file for FreeStyleProject?

2013-07-03 Thread Vincent Latombe
Huh, go to Github https://github.com/jenkinsci/jenkins/find/master hit 't' type configure-entries.jelly Vincent 2013/7/3 Mengqi mengqimag...@gmail.com: Hi all, Can anyone provide the configure-entries.jelly file for FreeStyleProject? Thanks a lot! -- You received this message because

Re: jenkins issue

2013-07-04 Thread Vincent Latombe
Hello Irfan, please read https://wiki.jenkins-ci.org/display/JENKINS/LTS+Release+Line Most likely you won't get the mentioned issue in 1.509.x line as this is an improvement. There is always a tradeoff between stability and new features. Regards, Vincent Vincent 2013/7/4 Irfan Sayed

Re: [New plugin] - Explicit ownership of the jobs and slaves

2013-07-11 Thread Vincent Latombe
Hi Oleg, I'm very interested by your plugin concept, I had a similar idea in mind and I would be happy to try it out. Concerning cloudbees plugin, as far as I know its artifactId is cloudbees-nodes-plus so it shouldn't conflict. On top of what you already listed there is a Cloudbees Folder Plus

Re: Maven Integration plugin with maven 3.1.x

2013-07-17 Thread Vincent Latombe
Hello, On a slightly different but related topic, I was thinking it could be worth having a Builder class to supercede hudson.tasks.Maven (in core), but to store that builder in the current maven-plugin. That would avoid duplicating some logic to the builder sitting in core just because it

Re: Maven Integration plugin with maven 3.1.x

2013-07-17 Thread Vincent Latombe
, Vincent Latombe vincent.lato...@gmail.com wrote: Hello, On a slightly different but related topic, I was thinking it could be worth having a Builder class to supercede hudson.tasks.Maven (in core), but to store that builder in the current maven-plugin. That would avoid duplicating some logic

Re: Release in http://repo.jenkins-ci.org/public but no tag in git repo

2013-07-17 Thread Vincent Latombe
Hi, I don't even see the corresponding commit, it looks like kohsuke did a release with pushChanges=false, but forgot to push afterwards. By the way, the tag for 1.2 (that you released) is missing as well from the github repo [1]. It should be pointing to commit

Re: Cannot access file on Jenkins slave

2013-08-01 Thread Vincent Latombe
Hi, Why not calling fp.exists() [1] directly? The FilePath instance is already a pointer to the remote filesystem. Vincent [1] http://javadoc.jenkins-ci.org/hudson/FilePath.html#exists%28%29 2013/8/1 Jesse Glick jgl...@cloudbees.com On Thu, Aug 1, 2013 at 10:20 AM, Stéphane Bruckert

Re: Email-Ext and Add Watch a la JIRA

2013-08-08 Thread Vincent Latombe
Hi, actually that behaviour can be already emulated by using the Favorite plugin and its ${FAVORITE_USERS_EMAIL} token. I added that to the global recipients for all jobs, so anyone that wants to watch a given job just has to flag it as favorite. Otherwise, I think the 'read' permission covers

Re: Email-Ext and Add Watch a la JIRA

2013-08-08 Thread Vincent Latombe
watch for the entire job, but allow a user to add a watch for only unstable builds, or only failing builds, etc. Basically allow them to configure a watch for any of the available triggers. Thanks, slide On Thu, Aug 8, 2013 at 6:03 AM, Vincent Latombe vincent.lato...@gmail.com wrote: Hi

Re: New plugin request

2013-08-21 Thread Vincent Latombe
Hello, what is the difference between your plugin and the existing https://wiki.jenkins-ci.org/display/JENKINS/Github+pull+request+builder+plugin? Vincent 2013/8/22 Hawk Newton hawk.new...@gmail.com Hello everyone, I've recently authored a new plugin -- github-pull-request-notifier I've

Re: Failed to dynamically deploy this plugin

2013-08-26 Thread Vincent Latombe
Hi, upgrading a plugin dynamically is not supported. What is supported is installation of a new plugin dynamically. Vincent 2013/8/26 mohan kumar Muddana mohanj...@gmail.com Hi, I have developed a plugin with Jenkins parent version as 1.428. It runs on that version properly as well as

Re: Slave page

2013-08-30 Thread Vincent Latombe
Hi, given the description, I believe TransientComputerActionFactory satisfies your need. It allows you to write an Action class and instanciates it. Then the action can define some jelly files, depending where its data should be displayed in the UI. Vincent 2013/8/28 Oliv

Re: Slave page

2013-09-03 Thread Vincent Latombe
Hi, as far as I can see, both Actions and ComputerPanelBox are inserted in the sidepanel (see jenkins-core/src/main/resources/hudson/model/Computer/sidepanel.jelly) as far as I can see there is currently no extention point that allows to contribute in the main part of a Computer index page.

Fwd: Adventurous users wanted! Literate multi-branch project type

2013-09-25 Thread Vincent Latombe
Hi Stephen, as you have noticed, I started to play with the plugin, I totally agree that it has tremendous potential and this will be the foundation for many improvements in Jenkins. I have an open question concerning how to handle several 'ways' of building the same project. In the given

Repository URL to use for deployment

2013-10-04 Thread Vincent Latombe
Hello, I see that [1] still refers to the Nexus [2] instance.for release deployment. I just had an unrelated releasing issue because port 8081 is not allowed from work. For some time now, Artifactory [3] has been set up to be used instead of Nexus (at least for public consumption). In

Re: Trigger code between job start and parameter screen

2013-10-08 Thread Vincent Latombe
Hi Yves, given the description, I think that https://wiki.jenkins-ci.org/display/JENKINS/Extended+Choice+Parameter+pluginwould feel your need, provided that you are able to generate the list of options separately. Vincent 2013/10/8 Yves Schumann starwarsfanl...@gmail.com Hi Am 08.10.2013

Re: Trigger code between job start and parameter screen

2013-10-08 Thread Vincent Latombe
feel - fit Vincent 2013/10/8 Vincent Latombe vincent.lato...@gmail.com Hi Yves, given the description, I think that https://wiki.jenkins-ci.org/display/JENKINS/Extended+Choice+Parameter+pluginwould feel your need, provided that you are able to generate the list of options separately

Re: Git plugin 2.0 release?

2013-10-09 Thread Vincent Latombe
Another alternative would be to fetch/push using anonymous remote (git fetch http://user:pwd@gitserver/myrepo refspec), that way it is never written in the repo config. Vincent 2013/10/9 nicolas de loof nicolas.del...@gmail.com This is more or less the current implementation, but as

Re: Git plugin 2.0 release?

2013-10-10 Thread Vincent Latombe
right, will experiment with this option. 2013/10/9 Vincent Latombe vincent.lato...@gmail.com Another alternative would be to fetch/push using anonymous remote (git fetch http://user:pwd@gitserver/myrepo refspec), that way it is never written in the repo config. Vincent 2013/10/9 nicolas

Re: Clarification re: SNAPSHOT , alpha, beta ?

2013-10-10 Thread Vincent Latombe
Hi - SNAPSHOTs are not released to anyone but yourself (or people downloading straight from CI builds) - alpha-beta are visible *only* on experimental update center - regular releases are visible on public update center If you are new in the dev community, I think you shouldn't worry yourself

Re: Git plugin 2.0 release?

2013-10-10 Thread Vincent Latombe
Hi Nicolas, I opened https://issues.jenkins-ci.org/browse/JENKINS-19974 for an issue I could find testing 2.0-beta-3 Vincent 2013/10/10 Vincent Latombe vincent.lato...@gmail.com Thanks nicolas, i'll give it a try asap Vincent Le 10 oct. 2013 12:00, nicolas de loof nicolas.del...@gmail.com

Re: Git plugin 2.0 release?

2013-10-11 Thread Vincent Latombe
should have been used to check the url before cloning. Will try to reproduce Le 10 oct. 2013 17:14, Vincent Latombe vincent.lato...@gmail.com a écrit : Hi Nicolas, I opened https://issues.jenkins-ci.org/browse/JENKINS-19974 for an issue I could find testing 2.0-beta-3 Vincent 2013/10/10

Re: Git plugin 2.0 release?

2013-10-11 Thread Vincent Latombe
/10/11 Vincent Latombe vincent.lato...@gmail.com I found another issue, the user/pwd is displayed in clear text in the inline validation if it fails. Vincent 2013/10/10 nicolas de loof nicolas.del...@gmail.com reproduced. will investigate on this tomorrow. 2013/10/10 nicolas de loof

Re: Git plugin 2.0 release?

2013-10-11 Thread Vincent Latombe
See https://issues.jenkins-ci.org/browse/JENKINS-19995 Vincent 2013/10/11 nicolas de loof nicolas.del...@gmail.com a screen capture would be a better explanation if you can (please obfuscate password if you need) 2013/10/11 Vincent Latombe vincent.lato...@gmail.com in the later issue

Re: example snippet collection...

2013-10-15 Thread Vincent Latombe
Maybe https://wiki.jenkins-ci.org/display/JENKINS/Recipe+Plugin ? Vincent 2013/10/15 teilo teilo+goo...@teilo.net nope not that one :-( On Tuesday, 15 October 2013 13:32:31 UTC+1, ogondza wrote: Just a wild guess but could it be ui-samples-plugin[1]? Formerly a part of core repo. [1]

Re: Beware depending on Jenkins 1.509.4

2013-10-21 Thread Vincent Latombe
Probably caused by http://jira.codehaus.org/browse/MNG-3092 which makes snapshot versions selected as part of version ranges. Vincent 2013/10/21 Kohsuke Kawaguchi kkawagu...@cloudbees.com I'm not sure where this that particular snapshot dependency is coming from. When I look at

Re: Jenkins plugins: execution order of buildwrapper setUp , Builder prebuild and perform

2013-10-24 Thread Vincent Latombe
I think the order is the following Buildwrappers : setUp Builders : prebuild Builders : build Vincent 2013/10/24 ulrich igor ngouagna kouete igor.ngoua...@gmail.com Hi, I'd like to know the execution order of the setUp in buildWrapper and the prebuild in the Builder. Which one is executed

Re: strange pushes on GitHub

2013-11-10 Thread Vincent Latombe
It seems like a lot of repositories are back to previous revisions. git-client-plugin's master now points to 1.4.3-SNAPSHOT whereas it should be pointing to 1.4.7-SNAPSHOT... Vincent 2013/11/10 Marcelo mreba...@gmail.com Domi, maybe it's related to this mail

Re: Get file path to Jelly file for a plugin.

2013-11-12 Thread Vincent Latombe
Have a look at [1] st:include from=${myobject} page=.jelly / [1] http://stapler.kohsuke.org/jelly-taglib-ref.html#jelly:include Vincent 2013/11/12 Thomas Åkerlund thomas.akerl...@gmail.com Hi! I have written a plugin that extends Builder. I have then created an extention point for

Re: Problems building maven-plugin in Eclipse

2013-11-16 Thread Vincent Latombe
Hi, I have exactly the same issue. Compiling in command line works, however in Eclipse, some inner classes cannot be resolved (despite being able to browse them in the classpath of the eclipse project). Eclipse is unable to resolve these 3 classes : -

Re: Problems building maven-plugin in Eclipse

2013-11-16 Thread Vincent Latombe
. Vincent 2013/11/16 Vincent Latombe vincent.lato...@gmail.com Hi, I have exactly the same issue. Compiling in command line works, however in Eclipse, some inner classes cannot be resolved (despite being able to browse them in the classpath of the eclipse project). Eclipse is unable

Re: Display of large build queue puts heavy strain on browser

2013-11-26 Thread Vincent Latombe
PR#1014 [1] is answering partially to this problem by making the build queue collapsible [1] https://github.com/jenkinsci/jenkins/pull/1014 Vincent 2013/11/26 Thobias Karlsson thobias.karls...@gmail.com Hi, Has anyone found a nice solution to this issue yet? Br, Thobias On Saturday,

Re: Trouble releasing a plugin to the directory

2013-12-13 Thread Vincent Latombe
This is a recurrent issue with corporate networks, usually port 8081 is not remotely reachable. I asked the question some time ago, but there are both a Nexus and Artifactory used in Jenkins infrastructure (respectively on maven.jenkins-ci.org:8081 and repo.jenkins-ci.org), I wonder which one

Re: Locale Plugin ownership and relocation

2014-01-07 Thread Vincent Latombe
Hi, I can see it in GitHub https://github.com/jenkinsci/locale-plugin I guess the information still points to svn because no release has ever been done from GitHub. Cheers, Vincent 2014/1/6 Bruno Kühnen Meneguello br...@meneguello.com Hello folks, I want to submit some changes to Locale

Re: mvn release does not work, only publishes SNAPSHOT releases

2014-01-14 Thread Vincent Latombe
I hit that problem recently, adding plugin artifactIdmaven-release-plugin/artifactId version${maven-release-plugin.version}/version dependencies dependency groupIdorg.apache.maven.scm/groupId artifactIdmaven-scm-provider-gitexe/artifactId version1.9/version

Re: Hosting Request Schedule Build Plugin

2014-02-04 Thread Vincent Latombe
Hi Andreas, you access right should be fixed now. Cheers, Vincent 2014-02-03 Andreas K ander...@hotmail.com: Thanks a lot. But it seems that I don't have commit access to the repository? Or perhaps I am just not using GitHub properly. Thanks for any help. Bye Andreas

Re: Plugin dev: Accessing global configuration

2014-02-04 Thread Vincent Latombe
Hi, global.jelly applies to global Jenkins configuration (system-wide configuration). I'm not sure to understand whether you need common configuration project-wide or if it is system-wide. If system-wide, from other build steps/notifiers, look up the descriptor for the buildstep that holds the

Re: cobertura supports java 7?

2014-02-26 Thread Vincent Latombe
Hi, these mailing lists are about Jenkins. This is not a general purpose place where you should ask just any question about anything. Please refer to general purpose websites, such as google or StackOverflow (which btw contains the answer to what you are looking for). I think the Jenkins

Re: Building jenkins for Gentoo

2014-03-10 Thread Vincent Latombe
Use mvn clean install (-DskipTests) to build the project. I don't know where you picked up this mvn ant:ant but it is clearly incorrect. Vincent 2014-03-10 16:48 GMT+01:00 Proneet Verma pronee...@gmail.com: On Monday, March 10, 2014 9:08:30 PM UTC+5:30, Mark Waite wrote: I'm pretty sure

Re: Intellij License Renewal

2014-03-12 Thread Vincent Latombe
I'd like to give it a try as well for work on Clearcase plugin and Literate. Vincent 2014-03-12 15:47 GMT+01:00 Adil Shabbir adilshab...@gmail.com: hi! Kohsuke, I am developing some of the VMware Management plugin and soon going to publish @ JENKINS , so kindly consider me also to try

Re: Queue.WaitingItem not usable anymore

2014-05-27 Thread Vincent Latombe
Hi, this is an eclipse-only issue. You can check out another thread on the ML talking about this https://groups.google.com/forum/#!searchin/jenkinsci-dev/Problems$20building$20maven-plugin$20in$20Eclipse/jenkinsci-dev/4rvorfnry1w/pRUPajeESCAJ Vincent 2014-05-27 21:29 GMT+02:00 Surya

Re: Refreshing the Jenkins UI

2014-06-02 Thread Vincent Latombe
I had made a PoC of line numbers plugin a-la-travis some time ago, I just pushed it on GitHub. https://wiki.jenkins-ci.org/display/JENKINS/Line+Numbers+Plugin Vincent 2014-06-02 12:49 GMT+02:00 Tom Fennelly tom.fenne...@gmail.com: On 30/05/2014 22:38, Surya Gaddipati wrote: I'd love to

Re: Queue.WaitingItem not usable anymore

2014-06-03 Thread Vincent Latombe
Someone opened a ticket about it on eclipse.org a few months ago... Unfortunately, no one has taken a closer look at it yet. https://bugs.eclipse.org/bugs/show_bug.cgi?id=424952 Vincent 2014-06-04 6:58 GMT+02:00 Reto Hirt reto.h...@gmail.com: And now it works Hmm, did the same thing as

Re: Looking for plugins

2014-06-03 Thread Vincent Latombe
Hi, you should rather post to jenkinsci-users, this ML is reserved for discussions about Jenkins development itself. Vincent 2014-06-04 4:32 GMT+02:00 Arnab Karmakar arna...@gmail.com: I am looking for plugins with following features. I did some research but could not find anything

Re: maven release uploading a SNAPSHOT version but not the release version

2014-07-11 Thread Vincent Latombe
Hi, You can read [1] to solve your issue. It is a recurring problem with recent versions of git combined with outdated version of maven-release-plugin. [1] https://groups.google.com/forum/#!searchin/jenkinsci-dev/how$20to$20release$20plugin/jenkinsci-dev/XldX7ONGFDw/75gWMyaeayMJ Vincent

Re: my plugin can't display in add build step and add post-build action

2014-07-15 Thread Vincent Latombe
Hi Frankie, did you put the @Extension annotation on the PublisherDescriptor? Vincent 2014-07-15 12:48 GMT+02:00 Frankie Huang frankie.gf.hu...@amway.com: Hi All, I developed a Publisher class which extends Recorder, and PublisherDescriptor which extends BuildStepDescriptor. It is

DTKit sources location?

2014-07-25 Thread Vincent Latombe
Hi, I'm trying to solve an issue related to xUnit, apparently it is located in one of the libs used by this plugin, dtkit. Apparently this lib is still on svn https://svn.jenkins-ci.org/tags/dtkit-default-junit-parent-0.39/ but hasn't been mirrored to github as part of the global github

Re: DTKit sources location?

2014-07-27 Thread Vincent Latombe
Vincent, Some time ago I was investigating an xUnit issue, and also tracked down the problem to dtkit. Since I couldn't send a pull request, I gave up and someone eventually fixed it later. +1 for that Bruno -- *From:* Vincent Latombe vincent.lato...@gmail.com

Re: Hosting for a new plugin

2014-07-31 Thread Vincent Latombe
Hi Stuart, some pinged me today about your plugin, it appears very useful. Maybe it could be worth to release it properly to have more people know about it and let them install it directly from the plugin manager? If you need some help with that I can give a hand. Cheers, Vincent 2013-11-21

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

2014-08-05 Thread Vincent Latombe
Hello Quingzhou, I have just created https://github.com/jenkinsci/flaky-test-handler for you and granted commit access. Welcome aboard! Vincent 2014-08-05 1:25 GMT+02:00 Qingzhou Luo qingzhou...@google.com: Thanks for supporting, Bruno. Still waiting for approval.. On Saturday, August 2,

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

2014-08-07 Thread Vincent Latombe
Sorry for that, I realised it after the fact but couldn't perform the rename operation. Vincent 2014-08-07 16:41 GMT+02:00 Jesse Glick jgl...@cloudbees.com: On Tue, Aug 5, 2014 at 12:16 AM, Vincent Latombe vincent.lato...@gmail.com wrote: I have just created https://github.com/jenkinsci

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

2014-08-07 Thread Vincent Latombe
Thanks a lot Jesse. Vincent 2014-08-07 17:06 GMT+02:00 Jesse Glick jgl...@cloudbees.com: On Thu, Aug 7, 2014 at 7:57 AM, Vincent Latombe vincent.lato...@gmail.com wrote: Sorry for that, I realised it after the fact but couldn't perform the rename operation. OK, renamed: https

Re: maven-plugin snapshot dependency broken by design ?

2014-08-08 Thread Vincent Latombe
I think the setting 'Block build when upstream project is building' should be taken into consideration when evaluating this trigger. Vincent 2014-08-08 10:17 GMT+02:00 nicolas de loof nicolas.del...@gmail.com: A customer of mine reported a weird behavior using maven snapshot dependencies to

Re: Problem when building a SCM plugin in Jenkins maven project

2014-09-01 Thread Vincent Latombe
Hi Luis, the groupId has changed, it is now 'org.jenkins-ci.plugins' Vincent 2014-09-01 10:49 GMT+02:00 Luis luix5...@gmail.com: Hi, there: I've recently made changes in the plasticscm plugin for jenkins and after pulling the changes and triggered the build, I got the following error:

Re: Problem when building a SCM plugin in Jenkins maven project

2014-09-01 Thread Vincent Latombe
, what's the next steps in order to get my changes integrated and available from Jenkins? Are these instructions (under Releasing to jenkins-ci.org section) still up-to-date? https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins Thanks! 2014-09-01 11:57 GMT+02:00 Vincent Latombe

Re: Problem with releasing new version of old plugin (RubyMetrics)

2014-09-02 Thread Vincent Latombe
Hi, you hit a common issue, see [1] Vincent [1] https://groups.google.com/forum/#!searchin/jenkinsci-dev/how$20to$20release$20plugin/jenkinsci-dev/XldX7ONGFDw/75gWMyaeayMJ 2014-09-02 18:47 GMT+02:00 Piotr Kuczynski piotr.kuczyn...@gmail.com: Hi guys, I have an issue releasing new version

Re: New Plugin: Label Linked Jobs Plugin

2014-09-03 Thread Vincent Latombe
I have created https://github.com/jenkinsci/label-linked-jobs-plugin for you. You should already have commit right (ID: dominiquebrice) Your plugin artifactId should be 'label-linked-jobs' (no '-plugin') Welcome aboard! Vincent 2014-09-03 15:38 GMT+02:00 Vincent Latombe vincent.lato

Re: New Plugin: Label Linked Jobs Plugin

2014-09-04 Thread Vincent Latombe
I may have missed something while creating the repo using the IRC bot; I thought it would give you the commit rights at the same time, I may have been wrong. Unfortunately it is currently offline so my hands are tied. Vincent 2014-09-04 3:51 GMT+02:00 dominiquebrice domi.br...@free.fr: Hi

Re: Failing a build from within BuildWrapper setUp

2014-10-02 Thread Vincent Latombe
From the javadoc: public BuildWrapper.Environment http://javadoc.jenkins-ci.org/hudson/tasks/BuildWrapper.Environment.html setUp(AbstractBuild http://javadoc.jenkins-ci.org/hudson/model/AbstractBuild.html build, Launcher

Re: Maven Task for Freestyle job Enhancements

2014-10-07 Thread Vincent Latombe
I started some work towards this, see - https://github.com/jenkinsci/jenkins/pull/1418 - https://github.com/Vlatombe/maven-builder-plugin Vincent 2014-10-04 1:17 GMT+02:00 Scott Wolk scott.w...@gmail.com: Thanks Jesse, I like your ideas. I'll work on a separate simple plugin that figures out

Re: Request to publish a Jenkins plug-in

2014-10-11 Thread Vincent Latombe
This is what I understood as well. (about m-r-p 2.5.1) Le 11 oct. 2014 10:07, Stephen Connolly stephen.alan.conno...@gmail.com a écrit : IIUC the release plugin version 2.5.1 has the fix for non-root pom releases (but I *might* be wrong about that) On Friday, October 10, 2014, Ulli Hafner

Re: PollSCM plugin

2014-11-05 Thread Vincent Latombe
Hello, Frankly I'm flattered that you'd want to include a plugin I wrote in core, but I think the real problem is not really about bundling a plugin in Jenkins or not. Everyone using Jenkins has different needs, and the fact that there are so many plugins out there is just a proof of that. As

Re: mvn release:prepare release:perform doesn't work

2014-11-10 Thread Vincent Latombe
Hello, have you checked the Workaround section in the page you mentioned? There has been a lot of reported issues because of mixing old maven-release-plugin and recent git versions. Vincent 2014-11-10 8:26 GMT+01:00 levsa levon...@gmail.com: Hi, I'm having trouble releasing the xvnc-plugin

Re: Unit testing a plugin on Windows: InjectedTest: File is being used

2015-02-04 Thread Vincent Latombe
That's right. Vincent 2015-02-04 8:35 GMT+01:00 Ivo Bellin Salarin ivo.bellinsala...@gmail.com: A supposition about my philosophical question: In the issue comments, I can find a revision id. when I follow this link, I can find the related commit on github (

Re: Deploying to Jenkins Artifactory

2015-02-04 Thread Vincent Latombe
Hi, as mentioned in the error message, you are trying to deploy a release artifact to a snapshot repository. You should check the repository url that you use, and make sure the repository url is correct ( http://repo.jenkins-ci.org/releases/) Vincent 2015-02-04 18:04 GMT+01:00 pallen

Re: NoSuchMethodError: com.google.inject.Binder.bindListener in tests

2015-02-05 Thread Vincent Latombe
com.google.inject.Binder is part of Google Guice, so I'd say that you're pulling the wrong version of it from somewhere.. Vincent 2015-02-05 22:32 GMT+01:00 Marat Mavlyutov m.mavlyu...@gmail.com: also, this is diff between dependency tree of project with ssh-slaves and without it:

Re: Plugin Hosting Requests

2015-02-17 Thread Vincent Latombe
Hi Richard, I think the good thing with using the dev-list is that this definitely gives more visibility for people to comment/suggest, which I'm afraid you'd lose by switching to JIRA. Vincent 2015-02-17 21:51 GMT+01:00 Richard Bywater rich...@byh2o.com: Hi I was just going through a bunch

Re: Release Versions Maven plugins

2015-02-19 Thread Vincent Latombe
Hi, I'm sorry but this question relates only to Maven, you should rather ask your questions to the maven users mailing list. The fact that you use Jenkins to do your releases has nothing to do with your problem. Best regards, Vincent 2015-02-19 16:06 GMT+01:00 lebrame57

Re: Add a left hand side link for a job, powered by a particular BuildStep

2015-02-10 Thread Vincent Latombe
Hi, In the #perform, method of your Builder, create an instance of your Action and add it to the Build object. In your case, I don't think you need to implement a TransientActionFactory. Vincent 2015-02-10 17:55 GMT+01:00 Kirill yam...@gmail.com: Hi folks, I created a plugin that contains

Re: jenkins plugin, only the old version shown in the update center

2015-05-06 Thread Vincent Latombe
It's a known issue (too old maven-release-plugin, not compatible with recent gits), update your parent POM to 1.580 at least to get the fix. Vincent 2015-05-06 2:45 GMT+02:00 Yuanbo Han yuanbo@gmail.com: Hi all, I'm using mvn release:prepare release:perform to build and upload my

Re: [PROPOSAL] Semi-automated detection of unmaintained plugins

2015-06-09 Thread Vincent Latombe
You might get compilation errors because of plugin extracted from core when applying such a process. Some plugins are really simple and may not need evolution because they just work as is. How would the attic be represented ? Should it be exposed to users in update center? Vincent

Re: Requesting hosting for recipebuilder plugin

2015-06-25 Thread Vincent Latombe
To me, it is the same as Literate Vincent 2015-06-25 21:41 GMT+02:00 Christopher Orr ch...@orr.me.uk: Is this much different from the Literate Plugin? -Chris On 25/06/15 15:53, Wilfred Hughes wrote: Hi folks We've just released a Jenkins plugin that lets you build jobs according to a

Re: revisit ToolInstallation (Default)

2015-07-02 Thread Vincent Latombe
+1 on Nicolas's proposal, I got hit several times by incorrect slaves configuration picking up a Maven installation in PATH instead of using one of the Jenkins-defined installations. Vincent 2015-07-02 4:57 GMT+02:00 Mark Waite mark.earl.wa...@gmail.com: I believe the ToolInstallation to which

Re: Requesting hosting for recipebuilder plugin

2015-06-29 Thread Vincent Latombe
Hi Wilfred, the literate plugin supports using yml as a description language, you don't need everything in the README (as well as supporting multi-branch projects) About specifying notifiers (junit, mail,...) directly in the description file, I have done that in an extensive way in my company,

Re: Requesting hosting for recipebuilder plugin

2015-06-29 Thread Vincent Latombe
://github.com/jenkinsci/literate-plugin/blob/master/README.md states that it's possible to specify build steps the in the 'marker file', but it doesn't give an example. Have you played with this feature? Wilfred On Monday, 29 June 2015 16:47:18 UTC+1, Vincent Latombe wrote: Hi Wilfred

Re: Revisiting bundled plugins

2015-08-07 Thread Vincent Latombe
I agree with Jesse, bundling new plugins is just pushing back the problem. What we really need is a better first time experience and I think Arnaud's wizard proposal makes sense. 2015-08-06 22:34 GMT+02:00 Jesse Glick jgl...@cloudbees.com: On Wed, Aug 5, 2015 at 1:56 AM, Kohsuke Kawaguchi

Re: Issues with Multiple SCM plugin

2015-08-07 Thread Vincent Latombe
Kiran, please, avoid cross-posting, and Jenkins Dev is for Jenkins core development and plugin development questions only. Regards, Vincent 2015-08-07 14:05 GMT+02:00 kiran kumar kiran.sirig...@gmail.com: Hello All, We are using Accurev as VCS tool. I wanted to use 2 different streams of

Re: Update Centers unavailable

2015-08-10 Thread Vincent Latombe
Vincent Latombe написал: I can' t seem to reach update centers (I tried the regular one and the experimental) http://updates.jenkins-ci.org/update-center.json http://updates.jenkins-ci.org/experimental/update-center.json I'm getting 503 and 504 errors. Vincent -- You received this message

Update Centers unavailable

2015-08-10 Thread Vincent Latombe
I can' t seem to reach update centers (I tried the regular one and the experimental) http://updates.jenkins-ci.org/update-center.json http://updates.jenkins-ci.org/experimental/update-center.json I'm getting 503 and 504 errors. Vincent -- You received this message because you are subscribed

Re: Failure to deploy a new plugin version with mvn release

2015-07-19 Thread Vincent Latombe
You probably have a corrupted jar in your local repository. If this repeats after cleaning your local maven repository, it may be due to the repository manager your are using. Given the class name, you should check that the jar org.sonatype.plexus:plexus-cipher is valid Vincent 2015-07-16 10:23

Re: button works only when job is running

2015-11-03 Thread Vincent Latombe
Hi Justine, depending on what you want to do exactly, http://javadoc.jenkins-ci.org/?jenkins/model/TransientActionFactory.html could help. Vincent 2015-11-03 13:04 GMT+01:00 : > I just realized, that if I add this button to action.jelly it works good, > but I dont

Re: Using ItemListener.java

2015-10-16 Thread Vincent Latombe
If you're using eclipse, don't forget to call mvn clean hpi:run, and not mvn hpi:run (otherwise you're @Extension annotation is not picked up) Vincent 2015-10-16 12:29 GMT+02:00 Jim SERRA : > Hum strange I don't find my mistake. > Frustrating... > The logger doesn't

Re: publication issue

2015-07-08 Thread Vincent Latombe
Hi Johann, from the error message it looks like your github ssh access is not correctly configured. You can check the url used directly in the pom.xml of the plugin. Once you fix push operation through ssh, release:prepare should work. Make sure you followed

Re: Jenkins Plugin Builds - Maven vs Gradle

2015-09-21 Thread Vincent Latombe
Hi Nick, I have replaced your two existing maven jobs by gradle jobs. Sorry about the setback. I have also updated the wiki documentation to mention the possibility, but currently this operation must be done manually.

Re: How to resave a job programmatically

2015-09-22 Thread Vincent Latombe
Hi, have you read https://wiki.jenkins-ci.org/display/JENKINS/Hint+on+retaining+backward+compatibility ? You can convert the previous structure to the new one in-memory when items are loaded from disk. In general it is enough for most use cases. Vincent 2015-09-22 6:40 GMT+02:00 Vinodhini Vijay

Re: Trying to extend FreeStyleProject to override a method

2016-01-07 Thread Vincent Latombe
I don't really know the full extent of what you are trying to achieve, but I wouldn't get down the road of writing a new kind of project 'just' for this. If it is about swapping some icons depending on an custom criteria, I'd take a look at https://github.com/jenkinsci/greenballs-plugin and build

Re: mqtt-notification-plugin release 1.2.1 not available in plugin manager

2016-01-08 Thread Vincent Latombe
I just checked my local jenkins instance and after refreshing the metadata from the update center I can see version 1.2.1 of your plugin. So I don't see any problem. Vincent 2016-01-08 8:30 GMT+01:00 Gareth Western : > Hi, > > I tried to release a new version (1.2.1)

Re: Can't release plugin: hostname in certificate didn't match

2016-01-11 Thread Vincent Latombe
Hi Mark, it seems you hit https://issues.jenkins-ci.org/browse/INFRA-519 (opened on Dec 22th, 2015). I don't know what is the progress on this, but several releases have happened since so I'm guessing that shouldn't block a release. maven.jenkins-ci.org:8081 doesn't use https anyway so I don't

Re: New Slack Plugin for Jenkins

2016-02-12 Thread Vincent Latombe
Great! Vincent 2016-02-12 11:12 GMT+01:00 Tommy Montingelli <tommy...@gmail.com>: > Hi Vincent, > I was wrong. With UnprotectedRootAction I've created the plugin. Thanks > > Il giorno mercoledì 10 febbraio 2016 13:58:46 UTC+1, Vincent Latombe ha > scritto: >> >&g

  1   2   >