Jenkins LTS 1.xxx and 1.xxx.1 are both same?

2015-05-04 Thread vinodhini . vijay
Hello All,


When I was using one of the LTS versions of Jenkins, I could find list of 
LTS versions displayed at http://mirrors.jenkins-ci.org/war-stable/ 

For example, In my POM, Jenkins parent version is 1.554 instead of 
1.554.1/1.554.2/1.554.3. 

In this case, May I know if 1.554(without .1 or .2 or .3 ) refers to which 
LTS Version (is it greatest-1.554.3 or lowest 1.554.1 or something 
different)?


Thank you in advance!

-- 
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/693131d9-c2d4-4149-9d24-05c3ae1bcba3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins LTS 1.xxx and 1.xxx.1 are both same?

2015-05-04 Thread oliver gondža

On Mon, 04 May 2015 08:51:29 +0200, vinodhini.vi...@gmail.com wrote:

Hi,

Jenkins 1.XXX is a weekly release, not an LTS. 1.XXX.[123] is an LTS based  
on 1.XXX so it does not contain any changes from LTS.


When it comes to Jenkins dependency version, I recommend to stick with  
weakly releases (possibly those that become LTS baselines) unless you  
explicitly depend on some fix delivered in LTS. Note, that there should  
not be any API changes between 1.XXX and 1.XXX.3.


--
oliver

--
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/op.xx3pjulisbfict%40localhost.localdomain.
For more options, visit https://groups.google.com/d/optout.


Synergy Plugin - 1.7 cannot get/update the whole completed source codes or tasks?

2015-05-04 Thread Fish Zheng
Hello, guys,

Now I'm using Jenkins(Jenkins-1.595.war) with Synergy plugin 1.7, however I 
found sometime it works, sometime it doesn't work.
I mean Jenkins cannot update/get the whole completed project's source 
tasks. Then this will lead compiling failed, at this time if I update the 
source code manfully (with the Synergy GUI client) into the work area, it 
will get the completed source code and compile successfully.

Any guys know what's the reason?

Thanks a lot!!!



Synergy Plugin http://wiki.jenkins-ci.org/display/JENKINS/Synergy+Plugin
This plugin integrates Telelogic Synergy SCM 
http://www.telelogic.com/products/synergy/ to Hudson.
1.7 
http://cnshgctca96f.svrmgt.apac.delphiauto.net:8082/pluginManager/plugin/synergy/thirdPartyLicenses

-- 
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/26d61dd4-654a-4d70-ae71-15ed472a3245%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Synergy Plugin - 1.7 cannot get/update the whole completed source codes or tasks?

2015-05-04 Thread Christopher Orr
It sounds like you're on the wrong mailing list; please ask your 
question (with more details) on the jenkinsci-users mailing list:

https://jenkins-ci.org/content/mailing-lists

Regards,
Chris


On 04/05/15 10:05, Fish Zheng wrote:

Hello, guys,

Now I'm using Jenkins(Jenkins-1.595.war) with Synergy plugin 1.7,
however I found sometime it works, sometime it doesn't work.
I mean Jenkins cannot update/get the whole completed project's source
tasks. Then this will lead compiling failed, at this time if I update
the source code manfully (with the Synergy GUI client) into the work
area, it will get the completed source code and compile successfully.

Any guys know what's the reason?

Thanks a lot!!!


--
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/55474A32.5060504%40orr.me.uk.
For more options, visit https://groups.google.com/d/optout.


Re: 'stapler-class' is deprecated

2015-05-04 Thread Jesse Glick
On Sun, May 3, 2015 at 8:09 PM,  andrew.sum...@xtra.co.nz wrote:
 I'm getting this warning when saving job configuration. Is it something I
 should worry about or can I safely ignore it?

Ignore it. https://issues.jenkins-ci.org/browse/JENKINS-27918

-- 
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr2tG3MxdXvHFcB9XCnnodqxXTELEDYYCsP-3xiO4a16ag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Out of disk space error on system partition: Can temp location for file parameter upload be changed?

2015-05-04 Thread Ioannis Moutsatsos
Bruno and Daniel Beck have suggested some good workarounds to this problem.
Please, take a look here https://github.com/stapler/stapler/pull/49 for 
some additional discussion and details.

Best regards
Ioannis

On Saturday, May 2, 2015 at 11:34:57 AM UTC-4, kinow wrote:

 Hi Ioannis,

  Is it possible to redirect the temporary file parameter uploads to 
 this partition instead of the C system partition?

 The upload request is handled by Stapler, which uses Apache Commons 
 FileUpload for the part you have mentioned. For short files (under 10Kb 
 default threshold) you may not see the file being copied to the temporary 
 directory at all. Files larger than this threshold, and under the upload 
 limit, are copied to the temporary directory [1] during the upload.

 Stapler creates a DiskFileItemFactory using the default constructor, 
 without specifying a repository (temp dir) [2]. In this case, Apache 
 Commons FileUpload defaults to using the system temporary directory (via 
 java.io.tmpdir).

 You can change the java.io.tmpdir to point to somewhere else - though I'm 
 not sure if that wouldn't break something else (I assume it wouldn't, but 
 you probably want to experiment with it first in testing box).

 This PR [4] worked locally, but hopefully others will comment with other 
 suggestions here or in GitHub.

 Hope that helps
 Bruno


 [1] https://commons.apache.org/proper/commons-fileupload/using.html

 [2] 
 https://github.com/stapler/stapler/blob/b0b0b96e8561914a824517784dfda3f420b42549/core/src/main/java/org/kohsuke/stapler/RequestImpl.java#L865

 [3] 
 https://github.com/apache/commons-fileupload/blob/a6ab65198a8f5c31044d6352dacbc3495c861943/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java#L544

 [4] https://github.com/stapler/stapler/pull/49

   --
  *From:* Ioannis Moutsatsos imout...@gmail.com javascript:
 *To:* jenkin...@googlegroups.com javascript: 
 *Sent:* Friday, May 1, 2015 6:44 AM
 *Subject:* Out of disk space error on system partition: Can temp location 
 for file parameter upload be changed?
  
 I discovered that on a Windows Jenkins server (Windows 2008 R2 Server) 
 when a 'file parameter uploads a file to the server it uses the
 * C:\Users\userName\AppData\Local\Temp* folder to keep a temporary copy 
 of the file.
 In addition, these temporary files are not cleaned with any frequency.

 As a result, I have run out of disk space trying to upload large files to 
 the server. 

 However, the same server has a very large D partition. Is it possible to 
 redirect the temporary file parameter uploads to this partition instead 
 of the C system partition?

 Thanks for any feedback!
 Ioannis
  -- 
 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-de...@googlegroups.com javascript:.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/jenkinsci-dev/45f995a1-a5e4-458c-ac90-a95c8de47ad1%40googlegroups.com
  
 https://groups.google.com/d/msgid/jenkinsci-dev/45f995a1-a5e4-458c-ac90-a95c8de47ad1%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.


   

-- 
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/faea9267-b6c1-4a86-b7fa-1aaa680f7d49%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins Confluence-wiki: Bad day for CAPTCHA!

2015-05-04 Thread Ioannis Moutsatsos
I have been trying to edit our Active Choices plugin wiki page [1] and 
Confluence always seems to be complaining about incorrect CAPTCHA.
What's going on?

I have also been getting 502 errors

[1] https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin

Anyone else has experienced troubles in the past 24 hours?

-- 
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/5d237c40-6240-4015-b005-594261689dbc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Confluence-wiki: Bad day for CAPTCHA!

2015-05-04 Thread Christopher Orr
I've made a lot of edits today and only a couple were slow or resulted 
in failures.


About three or four hours ago, the wiki was *really* slow, but it seems 
to have picked up again after Kohsuke gave it a kick.


-Chris


On 05/05/15 02:28, Ioannis Moutsatsos wrote:

I have been trying to edit our Active Choices plugin wiki page [1] and
Confluence always seems to be complaining about incorrect CAPTCHA.
What's going on?

I have also been getting 502 errors

[1] https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin

Anyone else has experienced troubles in the past 24 hours?

--
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.com
mailto:jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/jenkinsci-dev/5d237c40-6240-4015-b005-594261689dbc%40googlegroups.com
https://groups.google.com/d/msgid/jenkinsci-dev/5d237c40-6240-4015-b005-594261689dbc%40googlegroups.com?utm_medium=emailutm_source=footer.
For more options, visit https://groups.google.com/d/optout.


--
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.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/5548117B.6090709%40orr.me.uk.
For more options, visit https://groups.google.com/d/optout.


Error in Build process using Release Manager Plugin

2015-05-04 Thread bobyballi
Hello Folks,

I have an issue in compiling the code and I am not sure on which revision 
error was introduced or committed on SVN. For debugging the issue i wanted 
to perform the build per revision.

As I have the revision where last build was successful. Below was my 
approach to find the issue.

1. Tag the revision and re-try building the entire project and see results. 
This approach is very Lengthy, Space and Time Consuming.

2. Use Release Manager Plugin to build the project per revision. This is 
much faster approach as i can see all the revision on Jenkins i want to 
build from.

*I Have below two issues.*

*1. My build needs SVN_URL parameter which is not pulled automatically they 
way build process does if i do build using normal configuration.*
*2. I tried fixing this issue by declaring the variable SVN_URL in Global 
parameter section but i am getting below error right in middle of checkout. 
Can someone help me please.*
*My Subversion version is 1.7 and 1.5 Jenkins.*


FATAL: 
org.tmatesoft.svn.core.wc.SVNEvent.getExternalInfo()Lorg/tmatesoft/svn/core/internal/wc/SVNExternal;java.lang.NoSuchMethodError
 http://stacktrace.jenkins-ci.org/search?query=java.lang.NoSuchMethodError: 
org.tmatesoft.svn.core.wc.SVNEvent.getExternalInfo()Lorg/tmatesoft/svn/core/internal/wc/SVNExternal;
at 
hudson.scm.SubversionReleaseUpdateEventHandler.handleEvent(SubversionReleaseUpdateEventHandler.java:56)
 
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.SubversionReleaseUpdateEventHandler.handleEvententity=method
at 
org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.handleEvent(SvnOperationRunner.java:61)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.handleEvententity=method
at 
org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.handleEvent(SvnOperationRunner.java:66)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.handleEvententity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.handleExternalItemChange(SvnNgAbstractUpdate.java:369)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.handleExternalItemChangeentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.handleExternalsChange(SvnNgAbstractUpdate.java:310)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.handleExternalsChangeentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.handleExternals(SvnNgAbstractUpdate.java:246)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.handleExternalsentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.updateInternal(SvnNgAbstractUpdate.java:224)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.updateInternalentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.update(SvnNgAbstractUpdate.java:72)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.updateentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.checkout(SvnNgAbstractUpdate.java:802)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.checkoutentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.run(SvnNgCheckout.java:26) 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.runentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.run(SvnNgCheckout.java:11) 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.runentity=method
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner.run(SvnNgOperationRunner.java:20)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner.runentity=method
at 
org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.run(SvnOperationRunner.java:21)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.runentity=method
at 
org.tmatesoft.svn.core.wc2.SvnOperationFactory.run(SvnOperationFactory.java:1259)
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.wc2.SvnOperationFactory.runentity=method
at org.tmatesoft.svn.core.wc2.SvnOperation.run(SvnOperation.java:294) 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.wc2.SvnOperation.runentity=method
at 
org.tmatesoft.svn.core.wc.SVNUpdateClient.doCheckout(SVNUpdateClient.java:777)