Re: Jenkins Build

2015-08-03 Thread danalbu85
If you have a proxy try to set it up corectly. Also did you set up settings.xml file corectly? On Monday, August 3, 2015 at 10:18:44 PM UTC+3, shekhark...@gmail.com wrote: > > *when i installed Jenkins and set up everything, I started build, then i get > an error as shown below. PLease help me o

Re: Plugin Hosting Request: job-dsl-promotions-plugin

2015-08-03 Thread Dennis Schulte
Mh, ok, I can create a PR for the original plugin, but most of the DSL plugins are written in Groovy (like this one) and this would mean, that we add Groovy to those plugins. Is that the designated way? From my point of view there will be not 1k dsl plugins, because most of the stuff is already

Re: Missing new plugin stats

2015-08-03 Thread Daniel Beck
The usage stats are updated monthly, and these are still the stats up to June. On 04.08.2015, at 01:48, Zephyr Dev wrote: > Hi All, > > We recently published two plugins but for both no stats are being generated > (also, no JSON on http://stats.jenkins-ci.org/plugin-installation-trend) >

Missing new plugin stats

2015-08-03 Thread Zephyr Dev
Hi All, We recently published two plugins but for both no stats are being generated (also, no JSON on http://stats.jenkins-ci.org/plugin-installation-trend) 1. Zephyr Enterprise

Re: commit access

2015-08-03 Thread Jesse Glick
On Sun, Aug 2, 2015 at 12:20 AM, David van Laatum wrote: > I kinda like the separate sub job thing Note that this is just a workaround for limitations of freestyle projects. The Workflow step keeps everything in one job. > The way it excludes tests is both a positive and a negative to me would >

Re: Request hosting of new plugin - Runscope

2015-08-03 Thread Neil Mansilla
Thanks Daniel! Well, the struggle was real, but I believe the directions have been followed properly. Just performed *mvn release:prepare release:perform *and it was green (after a *few* tries)*. * The info box at the top of the plugin wiki says there's no info for this plugin (https://wiki.je

Re: Git plugin - feature branch frustrations

2015-08-03 Thread Mark Waite
I agree, it is poor user experience to require a workspace if one is not really needed. Will you be investigating further and submitting one or more bug reports describing the problems you've found? Will you be submitting pull requests (with tests) which show the problems and then show that your

Re: Plugin Hosting Request: job-dsl-promotions-plugin

2015-08-03 Thread Kanstantsin Shautsou
> On Aug 4, 2015, at 00:07, Kirill Merkushev wrote: > > yep, why not to pr this to original plugin? It can be in separate package and > have optional dependency Kirill mean @Extension(optional = true) and optional dependency on job-dsl-plugin so you will have classes during compiling. > > п

Re: Plugin Hosting Request: job-dsl-promotions-plugin

2015-08-03 Thread Kirill Merkushev
yep, why not to pr this to original plugin? It can be in separate package and have optional dependency понедельник, 3 августа 2015 г., 10:01:03 UTC+3 пользователь Dennis Schulte написал: > > Hello, > > > I would like to add our plugin to the Jenkins plugin list. > > >- URL: https://github.

advice on spawning threads in plugin to speed up processing

2015-08-03 Thread Dirk Weigenand
Hi, i've to comment on a pull request (https://github.com/weigo/NWDI-Core-Plugin/pulls) to one of my jenkins plugins that tries to speed up processing through the spawning of new threads during plugin processing. My stance on this is: Don't do that! since Jenkins is configured to use a cert

Re: @reviewbybees pull requests

2015-08-03 Thread Kanstantsin Shautsou
On Monday, July 27, 2015 at 9:15:07 PM UTC+3, Jesse Glick wrote: > > On Fri, Jul 3, 2015 at 10:48 AM, Ullrich Hafner > > wrote: > > I don’t see why it is helpful to make intermediate work visible to > plug-in > > authors, it creates a lot of unwanted noise. I think it would be > sufficient

Re: Plugin Hosting Request: job-dsl-promotions-plugin

2015-08-03 Thread Kanstantsin Shautsou
Sorry, i don't see any reason for having it as separate plugin, if promoted build implements job dsl extension, then put this code into promoted-builds plugin. Or we may end with 1k dsl plugins for 1k plugins. On Monday, August 3, 2015 at 10:01:03 AM UTC+3, Dennis Schulte wrote: > > Hello, > > >

Re: Jenkins Build

2015-08-03 Thread Kanstantsin Shautsou
This is not a bug tracker, try request help in jenkins-users maillist. On Monday, August 3, 2015 at 10:18:44 PM UTC+3, shekhark...@gmail.com wrote: > > *when i installed Jenkins and set up everything, I started build, then i get > an error as shown below. PLease help me out regarding this* > > >

Jenkins Build

2015-08-03 Thread shekharkethireddy
*when i installed Jenkins and set up everything, I started build, then i get an error as shown below. PLease help me out regarding this* [ERROR] Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org

Jenkins Build

2015-08-03 Thread shekharkethireddy
*when i installed Jenkins and set up everything, I started build, then i get an error as shown below. PLease help me out regarding this* [ERROR] Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for or

Re: Git plugin - feature branch frustrations

2015-08-03 Thread Nigel Magnay
I don't see why polling via a workspace should be required. 'git ls-remote' is sufficient to determine branch names and SHA1s, and thus to determine if there are any changes to build. And in any case, there will be no workspace, since all builds on lightweight docker containers, torn down immediate

jenkinsci-dev@googlegroups.com

2015-08-03 Thread Adam Henriques
Hi All! *JUES Program * We are happy to announce that the program is online for the *Jenkins CI User Event Scandinavia on Aug*ust* 12th*. We expect this year's event to be even better than last year - so we hope to see many of you for this two-days Jenkins

Re: Git plugin - feature branch frustrations

2015-08-03 Thread Mark Waite
Considering how poorly a number of developers think of the maven project type, aren't you at least tempted to try a multi-branch with a maven build step, rather than using the maven project type? I think your users will thank you. Mark Waite On Mon, Aug 3, 2015 at 10:30 AM Nigel Magnay wrote:

Re: Git plugin - feature branch frustrations

2015-08-03 Thread Nigel Magnay
Multi-branch looks useful, but sadly this project uses the maven project type. I did see some reports about it getting confused that the branch name has a '/' in it. If I get a chance I'll try and diagnose. On Mon, Aug 3, 2015 at 5:20 PM, Mark Waite wrote: > I've recently been using the multi-

Re: Git plugin - feature branch frustrations

2015-08-03 Thread Mark Waite
I've recently been using the multi-branch plugin with great success. It automatically creates a new job for each branch it detects, rather than "hiding" the detection of a new branch inside the execution history of a single job. You might experiment with it to see if it meets your needs better th

Re: Maven 3.3.6

2015-08-03 Thread Stephen Connolly
Depends on the IDE. You need to configure a system property or env var IIRC. Public holiday today in IRE, so I'm refusing to turn on the MBP On Monday, August 3, 2015, Kanstantsin Shautsou wrote: > aheritier pointed on maven-invoker... How do you run test classes from IDE? > > On Monday, August

Git plugin - feature branch frustrations

2015-08-03 Thread Nigel Magnay
So I'm trying to set up the git plugin to build feature branches. Features are on branches like feature/foo and feature/blah. This is a common pattern as it's derived from git-flow. I seem to have tried every combination of branch specifiers, and all this results in is jenkins building the same S

Jelly Repeatable inside Repeatable

2015-08-03 Thread JoshuadV
Hi there, Im trying to figure out how I can get the data from the following Jelly file into my builder. I tried pretty much everything I found in the net, and also tried to figure out on my own how it

Re: Request hosting new plugin : metadataJobProperty

2015-08-03 Thread Cédric
Hello Sorry for the delay You're right. it's very close to https://wiki.jenkins-ci.org/display/JENKINS/Metadata+plugin I think metadata is too much complicated - you must first create definition for metadata (data / node /number /script) - It always present the field for inputing metadata - i find

Re: Latest Parameterized Remote Trigger Plugin latest release version confusion

2015-08-03 Thread Daniel Beck
2.2 SNAPSHOTS have been published, so it appears to be this issue. http://repo.jenkins-ci.org/simple/snapshots/org/jenkins-ci/plugins/Parameterized-Remote-Trigger/2.2-SNAPSHOT/ On 03.08.2015, at 13:57, Christoph Kutzinski wrote: > Maybe the problem with localized Git output and maven-release-pl

Aw: Latest Parameterized Remote Trigger Plugin latest release version confusion

2015-08-03 Thread Christoph Kutzinski
Maybe the problem with localized Git output and maven-release-plugin < 2.5?   https://github.com/jenkinsci/pom/commit/62bd9a118493a16ae6bc8eef715785f06a6303be#diff-600376dffeb79835ede4a0b285078036   The plugin still depends on Jenkins Core 1.509 which doesn't have the fixed release-plugin, yet

Latest Parameterized Remote Trigger Plugin latest release version confusion

2015-08-03 Thread Christoph Kutzinski
Hi,   according to the Wiki the latest release should be 2.2.0 https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Remote+Trigger+Plugin However, I cannot find a release commit in Github, though there is a tag for it: https://github.com/jenkinsci/parameterized-remote-trigger-plugin/tree/Pa

Re: Maven 3.3.6

2015-08-03 Thread Kanstantsin Shautsou
aheritier pointed on maven-invoker... How do you run test classes from IDE? On Monday, August 3, 2015 at 12:34:53 AM UTC+3, Kanstantsin Shautsou wrote: > > i failed to run single IT test from console and idea, does it require > something special? > > Sent from my iPad > > On Aug 2, 2015, at 8:45

Show builded image in Build Summary

2015-08-03 Thread JoshuadV
Hello there, ill start right here with an excuse. Im programming since 2 years now, so you can say im at the very start. Im doing a practica right now, and my actual work is to write a Jenkins Plugin. Most of the things are working, many Javadoc-Reading and Googling is needed but most of th

Plugin Hosting Request: job-dsl-promotions-plugin

2015-08-03 Thread Dennis Schulte
Hello, I would like to add our plugin to the Jenkins plugin list. - URL: https://github.com/codecentric/job-dsl-promotions-plugin - plugin name: job-dsl-promotions-plugin - github name: denschu - jenkins-ci.org UserName: denschu - description: This plugin is an extension for