Re: setting hudson.plugins.active-directory.ActiveDirectorySecurityRealm.forceLdaps

2013-09-25 Thread Baptiste Mathus
Not sure but I *think* this is a system property. So you need to add
something like -D
hudson.plugins.active-directory.ActiveDirectorySecurityRealm.forceLdaps=true
to the java command starting Jenkins.
Hth
Le 25 sept. 2013 16:38,  a écrit :

> The wiki page for the actuve directory plugin says to
> set  
> "hudson.plugins.active-directory.ActiveDirectorySecurityRealm.forceLdaps",
>  but no where can I find information on how this is to be done.  Is it a
> line in the config.xml?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Problem creating view programatically

2013-09-25 Thread Daniel Beck
It helps if you mention the Jenkins version.

On 1.509.3, the following works:

def listView = new ListView("my-view", Jenkins.instance)
listView.includeRegex = "pattern"
listView.includePattern = java.util.regex.Pattern.compile("pattern")
Jenkins.instance.addView(listView)
Jenkins.instance.save()

While there's a ListView#setIncludeRegex(String) on master that does this 
automatically, it was only added in 1.526.

On 25.09.2013, at 23:23, Rui Fernando Hayashi  wrote:

> Hi
> 
> I'm trying to create a view programatically using code like this:
> 
> def listView = new ListView("my-view", Jenkins.instance)
> listView.includeRegex = "myregex"
> Jenkins.instance.addView(listView)
> Jenkins.instance.save()
> 
> The view is created, but the jobs that match the regex are not listed. The 
> jobs are only listed if I edit the view and save it (through the GUI).
> 
> Any ideas?
> 
> Tks
> 
> Rui
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: unable to connect slaves (behind firewalls) to master (in cloud) - this used to work

2013-09-25 Thread Richard Bywater
I'd say talk with the IT guys who operate the firewalls and get them to
check their logs - if it is a firewall issue they should be able to see
what is getting dropped and why.

One possibility (not knowing how "chatty" Jenkins is with its slaves), is
that there is no activity going on the connection for a period of time and
the firewall is dropping the connection for inactivity. Again, the firewall
admins should be able to see that.

Richard.


On Thu, Sep 26, 2013 at 12:17 PM, Dan Tenenbaum  wrote:

> Hello,
>
> Previously I had a Jenkins master running on an EC2 instance in the Amazon
> cloud, and two slave nodes, one of which was also in EC2 and the other of
> which is here at my institution, behind a firewall. Both slaves connected
> to the master using Java Web Start and everything worked fine.
>
> Now I am not able to set up new slaves inside my institution--they time
> out while handshaking with the master. And while my existing node inside
> the institute continued to work, after I disconnected it and tried to
> reconnect, it experienced the same problem. I am pretty sure that the
> problem is being behind the institution firewall, because when I unplugged
> my laptop from the ethernet cable and connected it to a public wi-fi
> network, it was able to connect, but when connected by ethernet only it
> times out during handshaking.
>
> The master is running Jenkins ver. 1.532. The slaves are running the
> slave.jar from http://mymasternode.tld:8080/jnlpJars/slave.jar.
>
> To be clear, the slave nodes CAN start a network connection with the
> master. I've set the master up to use a fixed port (33440) for JNLP slave
> agents, and made sure that port is made available in my EC2 security group.
>
> From a machine at my institution I can do this (slightly edited):
>
> $ telnet mymasternode.tld 33440
> Trying xx.xx.xx.xx...
> Connected to mymasternode.tld
> Escape character is '^]'.
>
> So that means in principle I can initiate a socket connection to the
> master. I try starting a slave agent like this:
>
> java -Djava.awt.headless=true  -jar slave.jar -jnlpUrl
> http://mymasternode.tld:8080/computer/laptop/slave-agent.jnlp -secret
> LONGSECRETCODEGOESHERE
>
> I get this:
>
> Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener 
> INFO: Jenkins agent is running in headless mode.
> Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener status
> INFO: Locating server among [http://mymasternode.tld:8080/]
> Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener status
> INFO: Connecting to mymasternode.tld:33440
> Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener status
> INFO: Handshaking
> Sep 25, 2013 4:55:56 PM hudson.remoting.jnlp.Main$CuiListener status
> INFO: Connected
>
> On the master in $JENKINS_HOME/logs/slaves/myslavename, I see this in the
> log:
>
> NLP agent connected from /xx.xx.xx.xx
> <===[JENKINS REMOTING CAPACITY]===>
>  and then after several minutes I see this:
> ERROR: Connection terminated
> ha:WC+LCP9b85aBtbiIQSmjNKU4P08vOT+vOD8mVc8DzHWtSE4tKMnMz/PLL0ldFVf2c+b/lb5MDAwVRQxSaBqcITRIIQMEMIIUFgAAckCEiWA=java.net.SocketException:
> Connection timed out
> at java.net.SocketInputStream.socketRead0(Native Method)
> at java.net.SocketInputStream.read(SocketInputStream.java:146)
> at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)
> at java.io.BufferedInputStream.read(BufferedInputStream.java:254)
> at
> hudson.remoting.FlightRecorderInputStream.read(FlightRecorderInputStream.java:77)
> at
> java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2271)
> at
> java.io.ObjectInputStream$BlockDataInputStream.peek(ObjectInputStream.java:2564)
> at
> java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2574)
> at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1314)
> at java.io.ObjectInputStream.readObject(ObjectInputStream.java:368)
> at hudson.remoting.Command.readFrom(Command.java:92)
> at
> hudson.remoting.ClassicCommandTransport.read(ClassicCommandTransport.java:71)
> at
> hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:48)
>
> Back at the slave, it still says 'connected'.
>
> What is going on? OK, so I'm behind a firewall, but I've shown that I can
> initiate a socket connection, so why do inside-the-firewall slaves behave
> differently during the handshake than outside-the-firewall slaves which
> start right up just fine? Maybe something changed on my end but I don't
> know what it could be so not sure what to ask my IT folks about. Thought
> maybe someone here could help.
>
> Thanks,
> Dan
>
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this 

unable to connect slaves (behind firewalls) to master (in cloud) - this used to work

2013-09-25 Thread Dan Tenenbaum
Hello,

Previously I had a Jenkins master running on an EC2 instance in the Amazon 
cloud, and two slave nodes, one of which was also in EC2 and the other of 
which is here at my institution, behind a firewall. Both slaves connected 
to the master using Java Web Start and everything worked fine.

Now I am not able to set up new slaves inside my institution--they time out 
while handshaking with the master. And while my existing node inside the 
institute continued to work, after I disconnected it and tried to 
reconnect, it experienced the same problem. I am pretty sure that the 
problem is being behind the institution firewall, because when I unplugged 
my laptop from the ethernet cable and connected it to a public wi-fi 
network, it was able to connect, but when connected by ethernet only it 
times out during handshaking.

The master is running Jenkins ver. 1.532. The slaves are running the 
slave.jar from http://mymasternode.tld:8080/jnlpJars/slave.jar.

To be clear, the slave nodes CAN start a network connection with the 
master. I've set the master up to use a fixed port (33440) for JNLP slave 
agents, and made sure that port is made available in my EC2 security group.

>From a machine at my institution I can do this (slightly edited):

$ telnet mymasternode.tld 33440
Trying xx.xx.xx.xx...
Connected to mymasternode.tld
Escape character is '^]'.

So that means in principle I can initiate a socket connection to the 
master. I try starting a slave agent like this:

java -Djava.awt.headless=true  -jar slave.jar -jnlpUrl 
http://mymasternode.tld:8080/computer/laptop/slave-agent.jnlp -secret 
LONGSECRETCODEGOESHERE

I get this:

Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener 
INFO: Jenkins agent is running in headless mode.
Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener status
INFO: Locating server among [http://mymasternode.tld:8080/]
Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener status
INFO: Connecting to mymasternode.tld:33440
Sep 25, 2013 4:55:55 PM hudson.remoting.jnlp.Main$CuiListener status
INFO: Handshaking
Sep 25, 2013 4:55:56 PM hudson.remoting.jnlp.Main$CuiListener status
INFO: Connected

On the master in $JENKINS_HOME/logs/slaves/myslavename, I see this in the 
log:

NLP agent connected from /xx.xx.xx.xx
<===[JENKINS REMOTING CAPACITY]===>
 and then after several minutes I see this:
ERROR: Connection terminated
ha:WC+LCP9b85aBtbiIQSmjNKU4P08vOT+vOD8mVc8DzHWtSE4tKMnMz/PLL0ldFVf2c+b/lb5MDAwVRQxSaBqcITRIIQMEMIIUFgAAckCEiWA=java.net.SocketException:
 
Connection timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:146)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)
at java.io.BufferedInputStream.read(BufferedInputStream.java:254)
at 
hudson.remoting.FlightRecorderInputStream.read(FlightRecorderInputStream.java:77)
at 
java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2271)
at 
java.io.ObjectInputStream$BlockDataInputStream.peek(ObjectInputStream.java:2564)
at 
java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2574)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1314)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:368)
at hudson.remoting.Command.readFrom(Command.java:92)
at 
hudson.remoting.ClassicCommandTransport.read(ClassicCommandTransport.java:71)
at 
hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:48)

Back at the slave, it still says 'connected'.

What is going on? OK, so I'm behind a firewall, but I've shown that I can 
initiate a socket connection, so why do inside-the-firewall slaves behave 
differently during the handshake than outside-the-firewall slaves which 
start right up just fine? Maybe something changed on my end but I don't 
know what it could be so not sure what to ask my IT folks about. Thought 
maybe someone here could help.

Thanks,
Dan



-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: No longer provided a means to add Jenkins slave as a service. What to do now?

2013-09-25 Thread Ruslan Zasukhin
On 9/25/13 11:59 PM, "Steve K"  wrote:

> Things are not completely settled yet.
> I'm having trouble with my older, Windows XP, machines.
> On the XP machines, after I "Click on FIle | Install as service", the process
> never completes and I don't get the jenkins-slave.exe in my C:\Jenkins
> directory.
> 
> I'm guessing that something(s) on the XP boxes are not as up-to-date as
> needed.  Do you have any idea of what that might be?
> 
> Thanks in advance.

This is my first post to this group.
I am new to jenkins. Trying to start use it last week.

Last 3 days was nightmare for me.
* docs are very old, snpshoots are old.
* step by step, googling I did found info.

Finally I have come that
1) my VirtualBox - win7_x64  -- even not loads slave when I click button
install save in browser.

2) normal win7_x64 computer, did install files,
   connect IF and WHILE runs Java Agent,
   but as only I choose File -> Install as service,
  agent closes and  node is shows as off line.
   
   in log file I see constant attempts and failures on load slave file.


So this is exactly not XP only problem.

* I have try reinstall latest stable, not helps.
* then I reinstall latest build1.531 -- same picture.

Yes, I have found similar complains start yet in Feb 2013.
Resone fix of security whole ...



** I was able so far get it working only if Java Agent is loaded ...
Then slave node works


** I have found stackoverflow issue, where people say:
  FORGET about Windows Service for slave.  It always VERY glitches.







Of course this is very frustrating, when the most default (by docs) way not
works during so many months ...

Or for 90% users Windows Slave as Service works fine?
If yes, then where is secret? :-)



-- 
Best regards,

Ruslan Zasukhin
VP Engineering and New Technology
Paradigma Software, Inc

Valentina - Joining Worlds of Information
http://www.paradigmasoft.com

[I feel the need: the need for speed]


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Jenkins for scala

2013-09-25 Thread Richard Bywater
https://wiki.jenkins-ci.org/display/JENKINS/sbt+plugin ?


On Thu, Sep 26, 2013 at 1:20 AM, sara hari prasad
wrote:

>
> Hi All,
>
>  I am very new to Jenkins tool. We are using scala programming language in
> my project. I was configure the scalastyle in SBT which plugin i have to
> install the jenkins. could anyone please give the suggestion .
>
>
> Best Regards,
>
> Hari.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Problem creating view programatically

2013-09-25 Thread Rui Fernando Hayashi
Hi

I'm trying to create a view programatically using code like this:

def listView = new ListView("my-view", Jenkins.instance)
listView.includeRegex = "myregex"
Jenkins.instance.addView(listView)
Jenkins.instance.save()

The view is created, but the jobs that match the regex are not listed. The
jobs are only listed if I edit the view and save it (through the GUI).

Any ideas?

Tks

Rui

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: No longer provided a means to add Jenkins slave as a service. What to do now?

2013-09-25 Thread Steve K
Things are not completely settled yet.
I'm having trouble with my older, Windows XP, machines.
On the XP machines, after I "Click on FIle | Install as service", the 
process never completes and I don't get the jenkins-slave.exe in my 
C:\Jenkins directory.

I'm guessing that something(s) on the XP boxes are not as up-to-date as 
needed.  Do you have any idea of what that might be?

Thanks in advance.

Steve K.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Set a property (UNCLASSIFIED)

2013-09-25 Thread Edwin Castro
My guess is that the jenkins.exe service wrapper doesn't know how to
respond to the -D option you are trying to pass.

The jenkins.exe service wrapper starts a java instance controlled by the
C:\Program Files (x86)\Jenkins\jenkins.xml file. I think you need to try
adding your -D option in the jenkins.xml file in the 
element. Mine looks like this at the moment (yours may vary)

-Xrs -Xmx1024m -XX:MaxPermSize=256m
-Dhudson.lifecycle=hudson.lifecycle.WindowsServiceLifecycle -jar
"%BASE%\jenkins.war" --httpPort=8080

I think you want to add
-Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true 
in .

Oh, and to be explicit, you'll need to change the registry back to its
original contents.

On 9/25/13 1:35 PM, Mead, Lance E CTR (US) wrote:
> Classification: UNCLASSIFIED
> Caveats: NONE
>
> The error message is that it did not respond to the start in a timely fashion
>
> -Original Message-
> From: jenkinsci-users@googlegroups.com 
> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
> Sent: Wednesday, September 25, 2013 12:58 PM
> To: jenkinsci-users@googlegroups.com
> Subject: Re: Set a property (UNCLASSIFIED)
>
> You need a hyphen before the "D", so that it is recognized as an option:
>
> "-Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true"
>
>
> On 9/25/2013 3:55 PM, Mead, Lance E CTR (US) wrote:
>> Classification: UNCLASSIFIED
>> Caveats: NONE
>>
>> I searched the registry and added 
>> "Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLd
>> aps=true" to the command line so now it is
>>
>> "C:\program files(86)\Jenkins\jenkins.exe 
>> Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true"
>>
>> It says the command is not found
>>
>>
>> -Original Message-
>> From: jenkinsci-users@googlegroups.com 
>> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
>> Sent: Wednesday, September 25, 2013 12:38 PM
>> To: jenkinsci-users@googlegroups.com
>> Subject: Re: Set a property (UNCLASSIFIED)
>>
>> What is the command line as shown in the Windows service configuration?
>> Is that where you attempted to add the value? What happens (error
>> message?) when you try to start the service this way?
>>
>> Eric
>>
>> On 9/25/2013 3:13 PM, Mead, Lance E CTR (US) wrote:
>>> Classification: UNCLASSIFIED
>>> Caveats: NONE
>>>
>>> I attempted to add the value to the windows service but it does not 
>>> accept the input.  I'm trying to change 
>>> "Hudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps"  
>>> although it does not say what to set it to.
>>>
>>> -Original Message-
>>> From: jenkinsci-users@googlegroups.com 
>>> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
>>> Sent: Wednesday, September 25, 2013 11:35 AM
>>> To: jenkinsci-users@googlegroups.com
>>> Subject: Re: Set a property
>>>
>>> On the command line when you start Jenkins, add the property to the command 
>>> like this:
>>>
>>> -Dproperty.name=property.value
>>>
>>> For example, to set a hypothetical property called requireSecureLogin 
>>> to
>>> true:
>>>
>>> -DrequireSecureLogin=true
>>>
>>> Eric
>>>
>>> On 9/25/2013 12:59 PM, lance.e.mead@mail.mil wrote:
 I have been told by the Jenkins wiki to set a property.  The search 
 on how to set a porperty fails to give the instructions.  Does 
 anyone know how  to specify and set a property that will be checked 
 on start-up aka a security login property?
 --
 You received this message because you are subscribed to the Google 
 Groups "Jenkins Users" group.
 To unsubscribe from this group and stop receiving emails from it, 
 send an email to jenkinsci-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.
>>> --
>>> You received this message because you are subscribed to the Google Groups 
>>> "Jenkins Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to jenkinsci-users+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>> Classification: UNCLASSIFIED
>>> Caveats: NONE
>>>
>>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-users+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>> Classification: UNCLASSIFIED
>> Caveats: NONE
>>
>>
> --
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
> Classification: UNCLASSIFIED
> Caveats: NONE
>
>

-- 
You received this message because you are

RE: Set a property (UNCLASSIFIED)

2013-09-25 Thread Mead, Lance E CTR (US)
Classification: UNCLASSIFIED
Caveats: NONE

The error message is that it did not respond to the start in a timely fashion

-Original Message-
From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
Sent: Wednesday, September 25, 2013 12:58 PM
To: jenkinsci-users@googlegroups.com
Subject: Re: Set a property (UNCLASSIFIED)

You need a hyphen before the "D", so that it is recognized as an option:

"-Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true"


On 9/25/2013 3:55 PM, Mead, Lance E CTR (US) wrote:
> Classification: UNCLASSIFIED
> Caveats: NONE
>
> I searched the registry and added 
> "Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLd
> aps=true" to the command line so now it is
>
> "C:\program files(86)\Jenkins\jenkins.exe 
> Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true"
>
> It says the command is not found
>
>
> -Original Message-
> From: jenkinsci-users@googlegroups.com 
> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
> Sent: Wednesday, September 25, 2013 12:38 PM
> To: jenkinsci-users@googlegroups.com
> Subject: Re: Set a property (UNCLASSIFIED)
>
> What is the command line as shown in the Windows service configuration?
> Is that where you attempted to add the value? What happens (error
> message?) when you try to start the service this way?
>
> Eric
>
> On 9/25/2013 3:13 PM, Mead, Lance E CTR (US) wrote:
>> Classification: UNCLASSIFIED
>> Caveats: NONE
>>
>> I attempted to add the value to the windows service but it does not 
>> accept the input.  I'm trying to change 
>> "Hudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps"  
>> although it does not say what to set it to.
>>
>> -Original Message-
>> From: jenkinsci-users@googlegroups.com 
>> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
>> Sent: Wednesday, September 25, 2013 11:35 AM
>> To: jenkinsci-users@googlegroups.com
>> Subject: Re: Set a property
>>
>> On the command line when you start Jenkins, add the property to the command 
>> like this:
>>
>> -Dproperty.name=property.value
>>
>> For example, to set a hypothetical property called requireSecureLogin 
>> to
>> true:
>>
>> -DrequireSecureLogin=true
>>
>> Eric
>>
>> On 9/25/2013 12:59 PM, lance.e.mead@mail.mil wrote:
>>> I have been told by the Jenkins wiki to set a property.  The search 
>>> on how to set a porperty fails to give the instructions.  Does 
>>> anyone know how  to specify and set a property that will be checked 
>>> on start-up aka a security login property?
>>> --
>>> You received this message because you are subscribed to the Google 
>>> Groups "Jenkins Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, 
>>> send an email to jenkinsci-users+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-users+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>> Classification: UNCLASSIFIED
>> Caveats: NONE
>>
>>
> --
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
> Classification: UNCLASSIFIED
> Caveats: NONE
>
>

--
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Classification: UNCLASSIFIED
Caveats: NONE


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Set a property (UNCLASSIFIED)

2013-09-25 Thread Eric Pyle

You need a hyphen before the "D", so that it is recognized as an option:

"-Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true"


On 9/25/2013 3:55 PM, Mead, Lance E CTR (US) wrote:

Classification: UNCLASSIFIED
Caveats: NONE

I searched the registry and added 
"Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true" 
to the command line so now it is

"C:\program files(86)\Jenkins\jenkins.exe 
Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true"

It says the command is not found


-Original Message-
From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
Sent: Wednesday, September 25, 2013 12:38 PM
To: jenkinsci-users@googlegroups.com
Subject: Re: Set a property (UNCLASSIFIED)

What is the command line as shown in the Windows service configuration?
Is that where you attempted to add the value? What happens (error
message?) when you try to start the service this way?

Eric

On 9/25/2013 3:13 PM, Mead, Lance E CTR (US) wrote:

Classification: UNCLASSIFIED
Caveats: NONE

I attempted to add the value to the windows service but it does not
accept the input.  I'm trying to change 
"Hudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps"  
although it does not say what to set it to.

-Original Message-
From: jenkinsci-users@googlegroups.com
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
Sent: Wednesday, September 25, 2013 11:35 AM
To: jenkinsci-users@googlegroups.com
Subject: Re: Set a property

On the command line when you start Jenkins, add the property to the command 
like this:

-Dproperty.name=property.value

For example, to set a hypothetical property called requireSecureLogin
to
true:

-DrequireSecureLogin=true

Eric

On 9/25/2013 12:59 PM, lance.e.mead@mail.mil wrote:

I have been told by the Jenkins wiki to set a property.  The search
on how to set a porperty fails to give the instructions.  Does anyone
know how  to specify and set a property that will be checked on
start-up aka a security login property?
--
You received this message because you are subscribed to the Google
Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it,
send an email to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Classification: UNCLASSIFIED
Caveats: NONE



--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Classification: UNCLASSIFIED
Caveats: NONE




--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


RE: Set a property (UNCLASSIFIED)

2013-09-25 Thread Mead, Lance E CTR (US)
Classification: UNCLASSIFIED
Caveats: NONE

I searched the registry and added 
"Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true" 
to the command line so now it is

"C:\program files(86)\Jenkins\jenkins.exe 
Dhudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps=true"

It says the command is not found


-Original Message-
From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
Sent: Wednesday, September 25, 2013 12:38 PM
To: jenkinsci-users@googlegroups.com
Subject: Re: Set a property (UNCLASSIFIED)

What is the command line as shown in the Windows service configuration? 
Is that where you attempted to add the value? What happens (error
message?) when you try to start the service this way?

Eric

On 9/25/2013 3:13 PM, Mead, Lance E CTR (US) wrote:
> Classification: UNCLASSIFIED
> Caveats: NONE
>
> I attempted to add the value to the windows service but it does not 
> accept the input.  I'm trying to change 
> "Hudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps"  
> although it does not say what to set it to.
>
> -Original Message-
> From: jenkinsci-users@googlegroups.com 
> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
> Sent: Wednesday, September 25, 2013 11:35 AM
> To: jenkinsci-users@googlegroups.com
> Subject: Re: Set a property
>
> On the command line when you start Jenkins, add the property to the command 
> like this:
>
> -Dproperty.name=property.value
>
> For example, to set a hypothetical property called requireSecureLogin 
> to
> true:
>
> -DrequireSecureLogin=true
>
> Eric
>
> On 9/25/2013 12:59 PM, lance.e.mead@mail.mil wrote:
>> I have been told by the Jenkins wiki to set a property.  The search 
>> on how to set a porperty fails to give the instructions.  Does anyone 
>> know how  to specify and set a property that will be checked on 
>> start-up aka a security login property?
>> --
>> You received this message because you are subscribed to the Google 
>> Groups "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, 
>> send an email to jenkinsci-users+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/groups/opt_out.
> --
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
> Classification: UNCLASSIFIED
> Caveats: NONE
>
>

--
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Classification: UNCLASSIFIED
Caveats: NONE


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Set a property (UNCLASSIFIED)

2013-09-25 Thread Eric Pyle
What is the command line as shown in the Windows service configuration? 
Is that where you attempted to add the value? What happens (error 
message?) when you try to start the service this way?


Eric

On 9/25/2013 3:13 PM, Mead, Lance E CTR (US) wrote:

Classification: UNCLASSIFIED
Caveats: NONE

I attempted to add the value to the windows service but it does not accept the 
input.  I'm trying to change
"Hudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps"  
although it does not say what to set it to.

-Original Message-
From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
Sent: Wednesday, September 25, 2013 11:35 AM
To: jenkinsci-users@googlegroups.com
Subject: Re: Set a property

On the command line when you start Jenkins, add the property to the command 
like this:

-Dproperty.name=property.value

For example, to set a hypothetical property called requireSecureLogin to
true:

-DrequireSecureLogin=true

Eric

On 9/25/2013 12:59 PM, lance.e.mead@mail.mil wrote:

I have been told by the Jenkins wiki to set a property.  The search on
how to set a porperty fails to give the instructions.  Does anyone
know how  to specify and set a property that will be checked on
start-up aka a security login property?
--
You received this message because you are subscribed to the Google
Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Classification: UNCLASSIFIED
Caveats: NONE




--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


RE: Set a property (UNCLASSIFIED)

2013-09-25 Thread Mead, Lance E CTR (US)
Classification: UNCLASSIFIED
Caveats: NONE

I attempted to add the value to the windows service but it does not accept the 
input.  I'm trying to change 
"Hudson.plugins.active_directory.ActiveDirectorySecurityRealm.forceLdaps"  
although it does not say what to set it to.

-Original Message-
From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Pyle
Sent: Wednesday, September 25, 2013 11:35 AM
To: jenkinsci-users@googlegroups.com
Subject: Re: Set a property

On the command line when you start Jenkins, add the property to the command 
like this:

-Dproperty.name=property.value

For example, to set a hypothetical property called requireSecureLogin to
true:

-DrequireSecureLogin=true

Eric

On 9/25/2013 12:59 PM, lance.e.mead@mail.mil wrote:
> I have been told by the Jenkins wiki to set a property.  The search on 
> how to set a porperty fails to give the instructions.  Does anyone 
> know how  to specify and set a property that will be checked on 
> start-up aka a security login property?
> --
> You received this message because you are subscribed to the Google 
> Groups "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send 
> an email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Classification: UNCLASSIFIED
Caveats: NONE


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: deploy build artifacts to nexus

2013-09-25 Thread William Soula
Or, if you are running a freestyle build, add the "Invoke top-level Maven 
targets" build step and then for the goal set "deploy:deploy-file" and pass the 
url, repositoryId, groupId, artifactId, version, packaging, and file properties.

Will

On 09/25/13 11:21, Jeff wrote:

Are you using Maven to build?  If so configure your nexus repository in your 
pom and run 'mvn deploy'.  No special jenkins plug ins required.

On Sep 24, 2013 11:06 PM, "Irfan Sayed" 
mailto:irfu.sa...@gmail.com>> wrote:
hi,
we are using open source nexus as maven internal repository management tool
is there any Jenkins plugin which deploys the build artifacts to nexus once 
build is successful?

i have seen the plugins like : artifactdeployer , copyartifact etc , but they 
don't deploy to nexus
please suggest

regards
irfan



--
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Set a property

2013-09-25 Thread Eric Pyle
On the command line when you start Jenkins, add the property to the 
command like this:


-Dproperty.name=property.value

For example, to set a hypothetical property called requireSecureLogin to 
true:


-DrequireSecureLogin=true

Eric

On 9/25/2013 12:59 PM, lance.e.mead@mail.mil wrote:
I have been told by the Jenkins wiki to set a property.  The search on 
how to set a porperty fails to give the instructions.  Does anyone 
know how  to specify and set a property that will be checked on 
start-up aka a security login property?

--
You received this message because you are subscribed to the Google 
Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to jenkinsci-users+unsubscr...@googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.


--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: BUG? Archived arctifacts OK in Jenkins; 0-bytes in downloaded ZIP

2013-09-25 Thread Trinition
Someone else discovered this issue new in 1.532.  It works fine in 1.531. 
 Someone has submitted a fix.

https://issues.jenkins-ci.org/browse/JENKINS-19752

On Wednesday, September 25, 2013 1:47:10 PM UTC-4, Trinition wrote:
>
> We've recently upgraded to Jenkins 1.532 and have started experiencing a 
> new problem.  When we view the archived artifacts of a build, they're fine 
> (e.g. local.config is 1kb).  But if we ask for "All Files As Zip", the 
> files in the zip are 0 bytes.  The files are all present, but empty.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Any Kiln users here? Can't clone my repo in Jenkins (installed on Ubuntu)

2013-09-25 Thread bluntcoder
Hi there,

I'm trying to get my new project setup on a new Jenkins build, installed on 
Ubuntu Linux. I use Kiln by FogBugz. I've tried many different solutions 
based on tons of research on the net. But still this is my output:

$ hg clone --rev default --noupdate 
ssh://myu...@mycompany.kilnhg.com/Repositories/Group/Corpsite 
/var/lib/jenkins/jobs/Corpsite/workspace
remote: Host key verification failed.
abort: no suitable response from remote hg!


At first I tried doing it with https, but that wouldn't work for writing to the 
repo, so I switch to SSH.


The steps I took were as follows:


   1. Installed nginx, jenkins and hg on my Ubuntu machine with apt.
   2. Created an access token (a way of creating a username for Jenkins access) 
in kiln.
   3. Added in to my /var/lib/jenkins/.hgrc file, since it looks like running 
as the "jenkins" user in linux.
   4. Created an SSH key and placed the private key in the 
/var/lib/jenkins/.ssh folder.
   5. Added the public key to my kiln configuration.

I'm hoping someone here that's active uses Kiln and can help me. Otherwise if 
people don't know what's going on could someone give me insight on how to debug 
this? Maybe a way to write my own hg command in the Jenkins project so I can 
force to use my ssh key? Or perhaps how to turn on debug/verbose mode on logs 
so that I can figure out what's going on? Or where it's searching for my keys?


Thanks,

  Mark

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issues with starting jenkins

2013-09-25 Thread Boris Kurktchiev
So that fixed the startup issue, but now I am not able to log in with my
account. The log is showing/saying nothing and I have it cranked up to 9.


On Wed, Sep 25, 2013 at 2:05 PM, Boris Kurktchiev wrote:

> I am running the latest version on RHEL6 using the jenkins repo I think I
> just upgraded to 1.532
>
>
> On Wed, Sep 25, 2013 at 1:37 PM, Ulli Hafner wrote:
>
>> Ok, I see. The conflicting part is in Jenkins core.
>>
>> Please remove the following block and restart:
>>
>>  
>>> false
>>> X-Forwarded-For
>>>   
>>>
>>
>> Did you upgrade Jenkins? Or is this a new installation? Which Jenkins
>> version?
>>
>>
>> Am 25.09.2013 um 19:18 schrieb Boris Kurktchiev :
>>
>> The only other auth related plugin i have enabled is Credentials that I
>> can think of. But just to be sure here is a dump of the plugins directory,
>> i dont see anything in there that should be affecting this:
>> http://pastebin.com/Y1WrBgGs (its a bunch so i figured better off using
>> pastebin than here)
>>
>>
>> On Wed, Sep 25, 2013 at 1:16 PM, Boris Kurktchiev 
>> wrote:
>>
>>> I am just using the internal auth single user at the moment. This is my
>>> config.xml
>>>
>>> 
>>> 
>>>   
>>> OldData
>>> hudson.diagnosis.TooManyJobsButNoView
>>>   
>>>   1.522
>>>   2
>>>   NORMAL
>>>   true
>>>   >> class="hudson.security.FullControlOnceLoggedInAuthorizationStrategy"/>
>>>   
>>> true
>>> false
>>>   
>>>   >> class="jenkins.model.ProjectNamingStrategy$DefaultProjectNamingStrategy"/>
>>>   ${ITEM_ROOTDIR}/workspace
>>>   ${ITEM_ROOTDIR}/builds
>>>   
>>> false
>>>   
>>>   
>>>   
>>>   
>>>   
>>>   
>>>   5
>>>   0
>>>   
>>> 
>>>   
>>>   All
>>>   false
>>>   false
>>>   
>>> 
>>>   
>>>   All
>>>   0
>>>   
>>>   
>>> false
>>> X-Forwarded-For
>>>   
>>>   
>>>   
>>>   true
>>> 
>>>
>>>
>>>
>>> On Wed, Sep 25, 2013 at 1:11 PM, Ulli Hafner 
>>> wrote:
>>>
 Jenkins can read the file but the contents are broken:

 hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER

 This field cannot be set from the XML file (is missing, etc.)

 Which plug-in are you using for security?

 Ulli


 Am 25.09.2013 um 19:00 schrieb Boris Kurktchiev :

 i keep getting org.jvnet.hudson.reactor.ReactorException:
 hudson.util.IOException2: Unable to read /opt/local/jenkins/config.xml when
 i try to start up Jenkins, but the directory and file is owned by jenkins
 user, i can su to jenkins user and view/edit the file… i am getting
 stumped. Here is a full dump of the error I am seeing:

 org.jvnet.hudson.reactor.ReactorException: hudson.util.IOException2:
 Unable to read /opt/local/jenkins/config.xml

 at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246)

 at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)

 at jenkins.model.Jenkins.executeReactor(Jenkins.java:910)

 at jenkins.model.Jenkins.(Jenkins.java:806)

 at hudson.model.Hudson.(Hudson.java:81)

 at hudson.model.Hudson.(Hudson.java:77)

 at hudson.WebAppMain$3.run(WebAppMain.java:221)

 Caused by: hudson.util.IOException2: Unable to read
 /opt/local/jenkins/config.xml

 at hudson.XmlFile.unmarshal(XmlFile.java:170)

 at jenkins.model.Jenkins$17.run(Jenkins.java:2530)

 at
 org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)

 at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)

 at jenkins.model.Jenkins$7.runTask(Jenkins.java:899)

 at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)

 at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)

 at
 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

 at
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

 at java.lang.Thread.run(Thread.java:722)

 Caused by: com.thoughtworks.xstream.converters.ConversionException:
 Could not set field class
 hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null : Could not set
 field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null

  Debugging information 

 message : Could not set field class
 hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null

 cause-exception :
 com.thoughtworks.xstream.converters.reflection.ObjectAccessException

 cause-message   : Could not set field class
 hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null

 class   : hudson.security.csrf.DefaultCrumbIssuer

 required-type   : hudson.security.csrf.DefaultCrumbIssuer

 converter-type  : hudson.util.RobustReflectionConverter

 path: /hudson/crumbIssuer/PROXY_HEADER

 line number : 38

 class[1] 

Re: Issues with starting jenkins

2013-09-25 Thread Boris Kurktchiev
I am running the latest version on RHEL6 using the jenkins repo I think I
just upgraded to 1.532


On Wed, Sep 25, 2013 at 1:37 PM, Ulli Hafner wrote:

> Ok, I see. The conflicting part is in Jenkins core.
>
> Please remove the following block and restart:
>
> 
>> false
>> X-Forwarded-For
>>   
>>
>
> Did you upgrade Jenkins? Or is this a new installation? Which Jenkins
> version?
>
>
> Am 25.09.2013 um 19:18 schrieb Boris Kurktchiev :
>
> The only other auth related plugin i have enabled is Credentials that I
> can think of. But just to be sure here is a dump of the plugins directory,
> i dont see anything in there that should be affecting this:
> http://pastebin.com/Y1WrBgGs (its a bunch so i figured better off using
> pastebin than here)
>
>
> On Wed, Sep 25, 2013 at 1:16 PM, Boris Kurktchiev wrote:
>
>> I am just using the internal auth single user at the moment. This is my
>> config.xml
>>
>> 
>> 
>>   
>> OldData
>> hudson.diagnosis.TooManyJobsButNoView
>>   
>>   1.522
>>   2
>>   NORMAL
>>   true
>>   > class="hudson.security.FullControlOnceLoggedInAuthorizationStrategy"/>
>>   
>> true
>> false
>>   
>>   > class="jenkins.model.ProjectNamingStrategy$DefaultProjectNamingStrategy"/>
>>   ${ITEM_ROOTDIR}/workspace
>>   ${ITEM_ROOTDIR}/builds
>>   
>> false
>>   
>>   
>>   
>>   
>>   
>>   
>>   5
>>   0
>>   
>> 
>>   
>>   All
>>   false
>>   false
>>   
>> 
>>   
>>   All
>>   0
>>   
>>   
>> false
>> X-Forwarded-For
>>   
>>   
>>   
>>   true
>> 
>>
>>
>>
>> On Wed, Sep 25, 2013 at 1:11 PM, Ulli Hafner wrote:
>>
>>> Jenkins can read the file but the contents are broken:
>>>
>>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER
>>>
>>> This field cannot be set from the XML file (is missing, etc.)
>>>
>>> Which plug-in are you using for security?
>>>
>>> Ulli
>>>
>>>
>>> Am 25.09.2013 um 19:00 schrieb Boris Kurktchiev :
>>>
>>> i keep getting org.jvnet.hudson.reactor.ReactorException:
>>> hudson.util.IOException2: Unable to read /opt/local/jenkins/config.xml when
>>> i try to start up Jenkins, but the directory and file is owned by jenkins
>>> user, i can su to jenkins user and view/edit the file… i am getting
>>> stumped. Here is a full dump of the error I am seeing:
>>>
>>> org.jvnet.hudson.reactor.ReactorException: hudson.util.IOException2:
>>> Unable to read /opt/local/jenkins/config.xml
>>>
>>> at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246)
>>>
>>> at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)
>>>
>>> at jenkins.model.Jenkins.executeReactor(Jenkins.java:910)
>>>
>>> at jenkins.model.Jenkins.(Jenkins.java:806)
>>>
>>> at hudson.model.Hudson.(Hudson.java:81)
>>>
>>> at hudson.model.Hudson.(Hudson.java:77)
>>>
>>> at hudson.WebAppMain$3.run(WebAppMain.java:221)
>>>
>>> Caused by: hudson.util.IOException2: Unable to read
>>> /opt/local/jenkins/config.xml
>>>
>>> at hudson.XmlFile.unmarshal(XmlFile.java:170)
>>>
>>> at jenkins.model.Jenkins$17.run(Jenkins.java:2530)
>>>
>>> at
>>> org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
>>>
>>> at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
>>>
>>> at jenkins.model.Jenkins$7.runTask(Jenkins.java:899)
>>>
>>> at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
>>>
>>> at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)
>>>
>>> at
>>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
>>>
>>> at
>>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
>>>
>>> at java.lang.Thread.run(Thread.java:722)
>>>
>>> Caused by: com.thoughtworks.xstream.converters.ConversionException:
>>> Could not set field class
>>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null : Could not set
>>> field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>>>
>>>  Debugging information 
>>>
>>> message : Could not set field class
>>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>>>
>>> cause-exception :
>>> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
>>>
>>> cause-message   : Could not set field class
>>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>>>
>>> class   : hudson.security.csrf.DefaultCrumbIssuer
>>>
>>> required-type   : hudson.security.csrf.DefaultCrumbIssuer
>>>
>>> converter-type  : hudson.util.RobustReflectionConverter
>>>
>>> path: /hudson/crumbIssuer/PROXY_HEADER
>>>
>>> line number : 38
>>>
>>> class[1]: hudson.model.Hudson
>>>
>>> version : not available
>>>
>>> ---
>>>
>>> at
>>> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79)
>>>
>>> at
>>> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
>>>
>>> at
>>> com.thoughtworks.xstream.core.TreeUnmarshaller.conve

Re: BUG? Archived arctifacts OK in Jenkins; 0-bytes in downloaded ZIP

2013-09-25 Thread Trinition
FWIW, there were some recent ZLIB issues that may be related (loose lay 
opinion): https://issues.jenkins-ci.org/browse/JENKINS-19473

On Wednesday, September 25, 2013 1:47:10 PM UTC-4, Trinition wrote:
>
> We've recently upgraded to Jenkins 1.532 and have started experiencing a 
> new problem.  When we view the archived artifacts of a build, they're fine 
> (e.g. local.config is 1kb).  But if we ask for "All Files As Zip", the 
> files in the zip are 0 bytes.  The files are all present, but empty.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Combine value from previously defined axis to create GroovyAxis

2013-09-25 Thread Adam Daughterson
...crickets...

On Thursday, September 19, 2013 4:01:59 PM UTC-6, Adam Daughterson wrote:
>
> I have a user-defined axis called VERSION containing values "A B C", and I 
> would like to create a GroovyAxis with values which are cobbled together 
> based on values in the VERSION axis.
>
> Something like (in pseudocode)
>
> def ret = [];
> ret += "foo_" + VERSION
> ret += "bar_" + VERSION
> ret += "baz_" + VERSION
> return ret;
>
> Is something like this possible?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


BUG? Archived arctifacts OK in Jenkins; 0-bytes in downloaded ZIP

2013-09-25 Thread Trinition
We've recently upgraded to Jenkins 1.532 and have started experiencing a 
new problem.  When we view the archived artifacts of a build, they're fine 
(e.g. local.config is 1kb).  But if we ask for "All Files As Zip", the 
files in the zip are 0 bytes.  The files are all present, but empty.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issues with starting jenkins

2013-09-25 Thread Ulli Hafner
Ok, I see. The conflicting part is in Jenkins core.

Please remove the following block and restart:

> 
> false
> X-Forwarded-For
>   

Did you upgrade Jenkins? Or is this a new installation? Which Jenkins version?


Am 25.09.2013 um 19:18 schrieb Boris Kurktchiev :

> The only other auth related plugin i have enabled is Credentials that I can 
> think of. But just to be sure here is a dump of the plugins directory, i dont 
> see anything in there that should be affecting this: 
> http://pastebin.com/Y1WrBgGs (its a bunch so i figured better off using 
> pastebin than here)
> 
> 
> On Wed, Sep 25, 2013 at 1:16 PM, Boris Kurktchiev  
> wrote:
> I am just using the internal auth single user at the moment. This is my 
> config.xml
> 
> 
> 
>   
> OldData
> hudson.diagnosis.TooManyJobsButNoView
>   
>   1.522
>   2
>   NORMAL
>   true
>class="hudson.security.FullControlOnceLoggedInAuthorizationStrategy"/>
>   
> true
> false
>   
>class="jenkins.model.ProjectNamingStrategy$DefaultProjectNamingStrategy"/>
>   ${ITEM_ROOTDIR}/workspace
>   ${ITEM_ROOTDIR}/builds
>   
> false
>   
>   
>   
>   
>   
>   
>   5
>   0
>   
> 
>   
>   All
>   false
>   false
>   
> 
>   
>   All
>   0
>   
>   
> false
> X-Forwarded-For
>   
>   
>   
>   true
> 
> 
> 
> 
> On Wed, Sep 25, 2013 at 1:11 PM, Ulli Hafner  wrote:
> Jenkins can read the file but the contents are broken:
> 
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER
> 
> This field cannot be set from the XML file (is missing, etc.) 
> 
> Which plug-in are you using for security?
> 
> Ulli
> 
> 
> Am 25.09.2013 um 19:00 schrieb Boris Kurktchiev :
> 
>> i keep getting org.jvnet.hudson.reactor.ReactorException: 
>> hudson.util.IOException2: Unable to read /opt/local/jenkins/config.xml when 
>> i try to start up Jenkins, but the directory and file is owned by jenkins 
>> user, i can su to jenkins user and view/edit the file… i am getting stumped. 
>> Here is a full dump of the error I am seeing:
>> 
>> org.jvnet.hudson.reactor.ReactorException: hudson.util.IOException2: Unable 
>> to read /opt/local/jenkins/config.xml
>> 
>>  at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246)
>> 
>>  at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)
>> 
>>  at jenkins.model.Jenkins.executeReactor(Jenkins.java:910)
>> 
>>  at jenkins.model.Jenkins.(Jenkins.java:806)
>> 
>>  at hudson.model.Hudson.(Hudson.java:81)
>> 
>>  at hudson.model.Hudson.(Hudson.java:77)
>> 
>>  at hudson.WebAppMain$3.run(WebAppMain.java:221)
>> 
>> Caused by: hudson.util.IOException2: Unable to read 
>> /opt/local/jenkins/config.xml
>> 
>>  at hudson.XmlFile.unmarshal(XmlFile.java:170)
>> 
>>  at jenkins.model.Jenkins$17.run(Jenkins.java:2530)
>> 
>>  at 
>> org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
>> 
>>  at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
>> 
>>  at jenkins.model.Jenkins$7.runTask(Jenkins.java:899)
>> 
>>  at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
>> 
>>  at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)
>> 
>>  at 
>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
>> 
>>  at 
>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
>> 
>>  at java.lang.Thread.run(Thread.java:722)
>> 
>> Caused by: com.thoughtworks.xstream.converters.ConversionException: Could 
>> not set field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : 
>> null : Could not set field class 
>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>> 
>>  Debugging information 
>> 
>> message : Could not set field class 
>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>> 
>> cause-exception : 
>> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
>> 
>> cause-message   : Could not set field class 
>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>> 
>> class   : hudson.security.csrf.DefaultCrumbIssuer
>> 
>> required-type   : hudson.security.csrf.DefaultCrumbIssuer
>> 
>> converter-type  : hudson.util.RobustReflectionConverter
>> 
>> path: /hudson/crumbIssuer/PROXY_HEADER
>> 
>> line number : 38
>> 
>> class[1]: hudson.model.Hudson
>> 
>> version : not available
>> 
>> ---
>> 
>>  at 
>> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79)
>> 
>>  at 
>> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
>> 
>>  at 
>> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
>> 
>>  at 
>> hudson.util.RobustReflectionConverter.unmarshalField(RobustReflectionConverter.java:333)
>> 
>>  at 
>> hudson.util

Re: Issues with starting jenkins

2013-09-25 Thread Boris Kurktchiev
The only other auth related plugin i have enabled is Credentials that I can
think of. But just to be sure here is a dump of the plugins directory, i
dont see anything in there that should be affecting this:
http://pastebin.com/Y1WrBgGs (its a bunch so i figured better off using
pastebin than here)


On Wed, Sep 25, 2013 at 1:16 PM, Boris Kurktchiev wrote:

> I am just using the internal auth single user at the moment. This is my
> config.xml
>
> 
> 
>   
> OldData
> hudson.diagnosis.TooManyJobsButNoView
>   
>   1.522
>   2
>   NORMAL
>   true
>class="hudson.security.FullControlOnceLoggedInAuthorizationStrategy"/>
>   
> true
> false
>   
>class="jenkins.model.ProjectNamingStrategy$DefaultProjectNamingStrategy"/>
>   ${ITEM_ROOTDIR}/workspace
>   ${ITEM_ROOTDIR}/builds
>   
> false
>   
>   
>   
>   
>   
>   
>   5
>   0
>   
> 
>   
>   All
>   false
>   false
>   
> 
>   
>   All
>   0
>   
>   
> false
> X-Forwarded-For
>   
>   
>   
>   true
> 
>
>
>
> On Wed, Sep 25, 2013 at 1:11 PM, Ulli Hafner wrote:
>
>> Jenkins can read the file but the contents are broken:
>>
>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER
>>
>> This field cannot be set from the XML file (is missing, etc.)
>>
>> Which plug-in are you using for security?
>>
>> Ulli
>>
>>
>> Am 25.09.2013 um 19:00 schrieb Boris Kurktchiev :
>>
>> i keep getting org.jvnet.hudson.reactor.ReactorException:
>> hudson.util.IOException2: Unable to read /opt/local/jenkins/config.xml when
>> i try to start up Jenkins, but the directory and file is owned by jenkins
>> user, i can su to jenkins user and view/edit the file… i am getting
>> stumped. Here is a full dump of the error I am seeing:
>>
>> org.jvnet.hudson.reactor.ReactorException: hudson.util.IOException2:
>> Unable to read /opt/local/jenkins/config.xml
>>
>> at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246)
>>
>> at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)
>>
>> at jenkins.model.Jenkins.executeReactor(Jenkins.java:910)
>>
>> at jenkins.model.Jenkins.(Jenkins.java:806)
>>
>> at hudson.model.Hudson.(Hudson.java:81)
>>
>> at hudson.model.Hudson.(Hudson.java:77)
>>
>> at hudson.WebAppMain$3.run(WebAppMain.java:221)
>>
>> Caused by: hudson.util.IOException2: Unable to read
>> /opt/local/jenkins/config.xml
>>
>> at hudson.XmlFile.unmarshal(XmlFile.java:170)
>>
>> at jenkins.model.Jenkins$17.run(Jenkins.java:2530)
>>
>> at
>> org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
>>
>> at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
>>
>> at jenkins.model.Jenkins$7.runTask(Jenkins.java:899)
>>
>> at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
>>
>> at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)
>>
>> at
>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
>>
>> at
>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
>>
>> at java.lang.Thread.run(Thread.java:722)
>>
>> Caused by: com.thoughtworks.xstream.converters.ConversionException: Could
>> not set field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER :
>> null : Could not set field class
>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>>
>>  Debugging information 
>>
>> message : Could not set field class
>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>>
>> cause-exception :
>> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
>>
>> cause-message   : Could not set field class
>> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>>
>> class   : hudson.security.csrf.DefaultCrumbIssuer
>>
>> required-type   : hudson.security.csrf.DefaultCrumbIssuer
>>
>> converter-type  : hudson.util.RobustReflectionConverter
>>
>> path: /hudson/crumbIssuer/PROXY_HEADER
>>
>> line number : 38
>>
>> class[1]: hudson.model.Hudson
>>
>> version : not available
>>
>> ---
>>
>> at
>> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79)
>>
>> at
>> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
>>
>> at
>> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
>>
>> at
>> hudson.util.RobustReflectionConverter.unmarshalField(RobustReflectionConverter.java:333)
>>
>> at
>> hudson.util.RobustReflectionConverter.doUnmarshal(RobustReflectionConverter.java:275)
>>
>> at
>> hudson.util.RobustReflectionConverter.unmarshal(RobustReflectionConverter.java:222)
>>
>> at
>> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)
>>
>> at
>> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
>>
>> at
>> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnma

Re: Issues with starting jenkins

2013-09-25 Thread Boris Kurktchiev
I am just using the internal auth single user at the moment. This is my
config.xml



  
OldData
hudson.diagnosis.TooManyJobsButNoView
  
  1.522
  2
  NORMAL
  true
  
  
true
false
  
  
  ${ITEM_ROOTDIR}/workspace
  ${ITEM_ROOTDIR}/builds
  
false
  
  
  
  
  
  
  5
  0
  

  
  All
  false
  false
  

  
  All
  0
  
  
false
X-Forwarded-For
  
  
  
  true




On Wed, Sep 25, 2013 at 1:11 PM, Ulli Hafner wrote:

> Jenkins can read the file but the contents are broken:
>
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER
>
> This field cannot be set from the XML file (is missing, etc.)
>
> Which plug-in are you using for security?
>
> Ulli
>
>
> Am 25.09.2013 um 19:00 schrieb Boris Kurktchiev :
>
> i keep getting org.jvnet.hudson.reactor.ReactorException:
> hudson.util.IOException2: Unable to read /opt/local/jenkins/config.xml when
> i try to start up Jenkins, but the directory and file is owned by jenkins
> user, i can su to jenkins user and view/edit the file… i am getting
> stumped. Here is a full dump of the error I am seeing:
>
> org.jvnet.hudson.reactor.ReactorException: hudson.util.IOException2:
> Unable to read /opt/local/jenkins/config.xml
>
> at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246)
>
> at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)
>
> at jenkins.model.Jenkins.executeReactor(Jenkins.java:910)
>
> at jenkins.model.Jenkins.(Jenkins.java:806)
>
> at hudson.model.Hudson.(Hudson.java:81)
>
> at hudson.model.Hudson.(Hudson.java:77)
>
> at hudson.WebAppMain$3.run(WebAppMain.java:221)
>
> Caused by: hudson.util.IOException2: Unable to read
> /opt/local/jenkins/config.xml
>
> at hudson.XmlFile.unmarshal(XmlFile.java:170)
>
> at jenkins.model.Jenkins$17.run(Jenkins.java:2530)
>
> at
> org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
>
> at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
>
> at jenkins.model.Jenkins$7.runTask(Jenkins.java:899)
>
> at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
>
> at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)
>
> at
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
>
> at
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
>
> at java.lang.Thread.run(Thread.java:722)
>
> Caused by: com.thoughtworks.xstream.converters.ConversionException: Could
> not set field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER :
> null : Could not set field class
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>
>  Debugging information 
>
> message : Could not set field class
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>
> cause-exception :
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
>
> cause-message   : Could not set field class
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
>
> class   : hudson.security.csrf.DefaultCrumbIssuer
>
> required-type   : hudson.security.csrf.DefaultCrumbIssuer
>
> converter-type  : hudson.util.RobustReflectionConverter
>
> path: /hudson/crumbIssuer/PROXY_HEADER
>
> line number : 38
>
> class[1]: hudson.model.Hudson
>
> version : not available
>
> ---
>
> at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79)
>
> at
> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
>
> at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
>
> at
> hudson.util.RobustReflectionConverter.unmarshalField(RobustReflectionConverter.java:333)
>
> at
> hudson.util.RobustReflectionConverter.doUnmarshal(RobustReflectionConverter.java:275)
>
> at
> hudson.util.RobustReflectionConverter.unmarshal(RobustReflectionConverter.java:222)
>
> at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)
>
> at
> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
>
> at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
>
> at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50)
>
> at
> com.thoughtworks.xstream.core.TreeUnmarshaller.start(TreeUnmarshaller.java:134)
>
> at
> com.thoughtworks.xstream.core.AbstractTreeMarshallingStrategy.unmarshal(AbstractTreeMarshallingStrategy.java:32)
>
> at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1061)
>
> at hudson.util.XStream2.unmarshal(XStream2.java:109)
>
> at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1045)
>
> at hudson.XmlFile.unmarshal(XmlFile.java:166)
>
> ... 9 more
>
> Caused by:
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException: Could
> not set field class hudson.security.csrf.DefaultCru

Re: Issues with starting jenkins

2013-09-25 Thread Ulli Hafner
Jenkins can read the file but the contents are broken:

hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER

This field cannot be set from the XML file (is missing, etc.) 

Which plug-in are you using for security?

Ulli


Am 25.09.2013 um 19:00 schrieb Boris Kurktchiev :

> i keep getting org.jvnet.hudson.reactor.ReactorException: 
> hudson.util.IOException2: Unable to read /opt/local/jenkins/config.xml when i 
> try to start up Jenkins, but the directory and file is owned by jenkins user, 
> i can su to jenkins user and view/edit the file… i am getting stumped. Here 
> is a full dump of the error I am seeing:
> 
> org.jvnet.hudson.reactor.ReactorException: hudson.util.IOException2: Unable 
> to read /opt/local/jenkins/config.xml
> 
>   at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246)
> 
>   at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)
> 
>   at jenkins.model.Jenkins.executeReactor(Jenkins.java:910)
> 
>   at jenkins.model.Jenkins.(Jenkins.java:806)
> 
>   at hudson.model.Hudson.(Hudson.java:81)
> 
>   at hudson.model.Hudson.(Hudson.java:77)
> 
>   at hudson.WebAppMain$3.run(WebAppMain.java:221)
> 
> Caused by: hudson.util.IOException2: Unable to read 
> /opt/local/jenkins/config.xml
> 
>   at hudson.XmlFile.unmarshal(XmlFile.java:170)
> 
>   at jenkins.model.Jenkins$17.run(Jenkins.java:2530)
> 
>   at 
> org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
> 
>   at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
> 
>   at jenkins.model.Jenkins$7.runTask(Jenkins.java:899)
> 
>   at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
> 
>   at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)
> 
>   at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> 
>   at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> 
>   at java.lang.Thread.run(Thread.java:722)
> 
> Caused by: com.thoughtworks.xstream.converters.ConversionException: Could not 
> set field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null : 
> Could not set field class 
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
> 
>  Debugging information 
> 
> message : Could not set field class 
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
> 
> cause-exception : 
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
> 
> cause-message   : Could not set field class 
> hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null
> 
> class   : hudson.security.csrf.DefaultCrumbIssuer
> 
> required-type   : hudson.security.csrf.DefaultCrumbIssuer
> 
> converter-type  : hudson.util.RobustReflectionConverter
> 
> path: /hudson/crumbIssuer/PROXY_HEADER
> 
> line number : 38
> 
> class[1]: hudson.model.Hudson
> 
> version : not available
> 
> ---
> 
>   at 
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79)
> 
>   at 
> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
> 
>   at 
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
> 
>   at 
> hudson.util.RobustReflectionConverter.unmarshalField(RobustReflectionConverter.java:333)
> 
>   at 
> hudson.util.RobustReflectionConverter.doUnmarshal(RobustReflectionConverter.java:275)
> 
>   at 
> hudson.util.RobustReflectionConverter.unmarshal(RobustReflectionConverter.java:222)
> 
>   at 
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)
> 
>   at 
> com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
> 
>   at 
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
> 
>   at 
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50)
> 
>   at 
> com.thoughtworks.xstream.core.TreeUnmarshaller.start(TreeUnmarshaller.java:134)
> 
>   at 
> com.thoughtworks.xstream.core.AbstractTreeMarshallingStrategy.unmarshal(AbstractTreeMarshallingStrategy.java:32)
> 
>   at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1061)
> 
>   at hudson.util.XStream2.unmarshal(XStream2.java:109)
> 
>   at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1045)
> 
>   at hudson.XmlFile.unmarshal(XmlFile.java:166)
> 
>   ... 9 more
> 
> Caused by: 
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException: Could 
> not set field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : 
> null
> 
>   at 
> com.thoughtworks.xstream.converters.reflection.Sun14ReflectionProvider.write(Sun14ReflectionProvider.java:141)
> 
>   at 
> com.thoughtworks.xstream.converters.re

Re: No longer provided a means to add Jenkins slave as a service. What to do now?

2013-09-25 Thread Steve K

Curtis,

Thank you very much for your reply.
That does seem to do the trick.

As a note, for the slaves that already had a service entry, I did get 
errors when I added the service:
[Jenkins]$ C:\Jenkins\jenkins-slave.exe installl
WMI.WmiException: ...service exists

but, it seems to work.

This makes my life much less stressful.  Thanks again.

Sincerely,

Steve K.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Issues with starting jenkins

2013-09-25 Thread Boris Kurktchiev
 

i keep getting org.jvnet.hudson.reactor.ReactorException: 
hudson.util.IOException2: Unable to read /opt/local/jenkins/config.xml when 
i try to start up Jenkins, but the directory and file is owned by jenkins 
user, i can su to jenkins user and view/edit the file… i am getting 
stumped. Here is a full dump of the error I am seeing:

org.jvnet.hudson.reactor.ReactorException: hudson.util.IOException2: Unable 
to read /opt/local/jenkins/config.xml

at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:246)

at jenkins.InitReactorRunner.run(InitReactorRunner.java:43)

at jenkins.model.Jenkins.executeReactor(Jenkins.java:910)

at jenkins.model.Jenkins.(Jenkins.java:806)

at hudson.model.Hudson.(Hudson.java:81)

at hudson.model.Hudson.(Hudson.java:77)

at hudson.WebAppMain$3.run(WebAppMain.java:221)

Caused by: hudson.util.IOException2: Unable to read 
/opt/local/jenkins/config.xml

at hudson.XmlFile.unmarshal(XmlFile.java:170)

at jenkins.model.Jenkins$17.run(Jenkins.java:2530)

at 
org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)

at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)

at jenkins.model.Jenkins$7.runTask(Jenkins.java:899)

at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)

at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)

at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:722)

Caused by: com.thoughtworks.xstream.converters.ConversionException: Could 
not set field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : 
null : Could not set field class 
hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null

 Debugging information 

message : Could not set field class 
hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null

cause-exception : 
com.thoughtworks.xstream.converters.reflection.ObjectAccessException

cause-message   : Could not set field class 
hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : null

class   : hudson.security.csrf.DefaultCrumbIssuer

required-type   : hudson.security.csrf.DefaultCrumbIssuer

converter-type  : hudson.util.RobustReflectionConverter

path: /hudson/crumbIssuer/PROXY_HEADER

line number : 38

class[1]: hudson.model.Hudson

version : not available

---

at 
com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79)

at 
com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)

at 
com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)

at 
hudson.util.RobustReflectionConverter.unmarshalField(RobustReflectionConverter.java:333)

at 
hudson.util.RobustReflectionConverter.doUnmarshal(RobustReflectionConverter.java:275)

at 
hudson.util.RobustReflectionConverter.unmarshal(RobustReflectionConverter.java:222)

at 
com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)

at 
com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)

at 
com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)

at 
com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50)

at 
com.thoughtworks.xstream.core.TreeUnmarshaller.start(TreeUnmarshaller.java:134)

at 
com.thoughtworks.xstream.core.AbstractTreeMarshallingStrategy.unmarshal(AbstractTreeMarshallingStrategy.java:32)

at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1061)

at hudson.util.XStream2.unmarshal(XStream2.java:109)

at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1045)

at hudson.XmlFile.unmarshal(XmlFile.java:166)

... 9 more

Caused by: 
com.thoughtworks.xstream.converters.reflection.ObjectAccessException: Could 
not set field class hudson.security.csrf.DefaultCrumbIssuer.PROXY_HEADER : 
null

at 
com.thoughtworks.xstream.converters.reflection.Sun14ReflectionProvider.write(Sun14ReflectionProvider.java:141)

at 
com.thoughtworks.xstream.converters.reflection.Sun14ReflectionProvider.writeField(Sun14ReflectionProvider.java:104)

at 
hudson.util.RobustReflectionConverter.doUnmarshal(RobustReflectionConverter.java:290)

at 
hudson.util.RobustReflectionConverter.unmarshal(RobustReflectionConverter.java:222)

at 
com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)

... 24 more

Caused by: java.lang.IllegalArgumentException

at sun.misc.Unsafe.objectFieldOffset(Native Method)

at 
com.thoughtworks.xstream.converters.reflection.Sun14ReflectionProvider.getFieldOffset(Sun14ReflectionProvider.java:150)

at 
com.thoughtworks.xstream.converters.reflection.Sun14ReflectionProvider.write(Sun14ReflectionProvider.java:112)

... 28 more

-- 
You received this message because you are subs

Set a property

2013-09-25 Thread lance . e . mead . ctr
I have been told by the Jenkins wiki to set a property.  The search on how 
to set a porperty fails to give the instructions.  Does anyone know how  to 
specify and set a property that will be checked on start-up aka a security 
login property?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: No longer provided a means to add Jenkins slave as a service. What to do now?

2013-09-25 Thread Curtis Kline
Steve,

Instead of using the command line, I run the JNLP agent using the "Launch"
button on the Node page. My steps are:

1. Get on the desktop of the slave machine.
2. Open a browser and browse to my Jenkins master.
3. Click on Manage Nodes and then the link for the slave (if I've already
set it up).
4. On the slave page click on the Launch button (see screenshot link:
http://note.io/18WJNlS)
5. Click on File | Install as a service

Does that help?

Curtis




On Wed, Sep 25, 2013 at 9:09 AM, Steve K wrote:

> Hello,
>
> Previously, with Jenkins 1.40x.x, when adding a new slave, I would log in
> to the slave and use the command provided to me. Something like:
> java -jar slave.jar 
>
> With that, I would be given the opportunity to add the slave process as a
> service.
>
> Now, the command includes the -secret , which is OK with
> me, but I'm never given the opportunity to add the slave as a service.
>
> The old service entry is totally incompatible. The old service entry
> executes a "jenkins-slave.exe" which, apparently, is no longer used (at
> least, I didn't get one when I executed the command
>
> java -jar slave.jar  -jnlpUrl 
> http://##.##.##.##:8080/computer/SLAVE_NAME/slave-agent.jnlp -secret 
> x ).
>
> If it matters, my master is Linux and my slaves are Windows.
>
> From the master, I tried to "Let Jenkins control this Windows slave as a 
> Windows service", but that didn't work.
> In fact, the master tried and failed to authenticate so many times, it locked 
> my slave's user account (really not good at all :-().
>
> So, I'd like to go back to how things worked before. Each slave had a 
> jenkinsslave-C__Jenkins service.
>
> Thanks in advance.
>
> Steve K.
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: deploy build artifacts to nexus

2013-09-25 Thread Jeff
Are you using Maven to build?  If so configure your nexus repository in
your pom and run 'mvn deploy'.  No special jenkins plug ins required.
On Sep 24, 2013 11:06 PM, "Irfan Sayed"  wrote:

> hi,
> we are using open source nexus as maven internal repository management tool
> is there any Jenkins plugin which deploys the build artifacts to nexus
> once build is successful?
>
> i have seen the plugins like : artifactdeployer , copyartifact etc , but
> they don't deploy to nexus
> please suggest
>
> regards
> irfan
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


No longer provided a means to add Jenkins slave as a service. What to do now?

2013-09-25 Thread Steve K
Hello,

Previously, with Jenkins 1.40x.x, when adding a new slave, I would log in 
to the slave and use the command provided to me. Something like:
java -jar slave.jar 

With that, I would be given the opportunity to add the slave process as a 
service.

Now, the command includes the -secret , which is OK with 
me, but I'm never given the opportunity to add the slave as a service.

The old service entry is totally incompatible. The old service entry 
executes a "jenkins-slave.exe" which, apparently, is no longer used (at 
least, I didn't get one when I executed the command

java -jar slave.jar  -jnlpUrl 
http://##.##.##.##:8080/computer/SLAVE_NAME/slave-agent.jnlp -secret 
x ).

If it matters, my master is Linux and my slaves are Windows.

>From the master, I tried to "Let Jenkins control this Windows slave as a 
>Windows service", but that didn't work.
In fact, the master tried and failed to authenticate so many times, it locked 
my slave's user account (really not good at all :-().

So, I'd like to go back to how things worked before. Each slave had a 
jenkinsslave-C__Jenkins service.

Thanks in advance.

Steve K.


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Jenkins Build node CentOS 6.4

2013-09-25 Thread flex . guse
Hi teilo, hi Les,

thanks for your answers. I wasn't aware changes in .profile are not global 
and I wasn't aware of interactive and non-interactive shells.

I added a .bashrc file for the jenkins user and set the language - as Les 
suggested. 

This works for me, thanks a lot!
Christoph

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Jenkins Build node CentOS 6.4

2013-09-25 Thread Les Mikesell
On Wed, Sep 25, 2013 at 7:32 AM,   wrote:
> It helped to add a Shell script execution as Pre-Build step:
>
> export LANG=en_US.UTF-8
> export LC_ALL=en_US.UTF-8
>
> But this is only a workaround and does not answer the question why the
> system settings are not taken correctly.

They aren't 'system' settings, they are interactive login settings.
You should be able to set it in the jenkins user's .bashrc file or in
the node configuration's node properties 'environment variables',
though.

-- 
   Les Mikesell
 lesmikes...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: stop mirroring Source Control folder structure in jenkins workfolder

2013-09-25 Thread Les Mikesell
On Wed, Sep 25, 2013 at 9:29 AM, Al Jay  wrote:
> I am using Jenkings 1.531 on Windows 8 for evaluation. I am trying to build
> VB6.NET Software with it.
> I installed the Visual Source Safe plugin as this still is the version
> control we are using. i set it as the SCM in the job I created
> I have a Job in which I use the version control path
> $/Solution/Project1/foo1/bar1
>
> In advanced Settings of the job I set the workfolder to be C:\Source\bar1
>
> In C:\Source I have a batch file which I am calling with jenkins as build
> action, which again calls vb6.exe C:\Source\bar1\bar.vpb /make
>
> Then Jenkins does the following: It creates the folders
> C:\Source\bar1\Solution\Project1\foo1\bar1 and checks out the files in this
> folder. So my whole project doesn't work.
>
> I would leave the workfolder to standard and just change my batch file, but
> then I had to change the bar.vbp project file which is referencing the
> libraries I need for compiling. All the other developers are checkoung out
> the source code at C:\Source. When my build system checksout out the bar.vbp
> that mans that the references to the libraries are broken because their
> bar.vbp is referencing them in C:\Source and if I wanted it to work on
> Jenkins, I would have to change it to
> C:\path_to_jenkins\jobs\jobname\workspace\Solution\Project1\foo1\bar1 or to
> C:\Source\bar1\Solution\Project1\foo1\bar1. Then again if I accidentally
> check in my bar.vbp to the Source Control and the other developers are
> checking it to their working folders, that means that they are no longer
> able to compile the project via Visual Studio.
>
> So my question in general is: How do I tell Jenkins to stop mirroring out
> the structure of the Source control and just check out the sources to be in
> C:\Source\bar1\?

With most source control systems you would want your project to use
relative paths and environment settings to find all of its components
so you could build in a different location (even without jenkins you
might want the workspace on a different drive or to have 2 slightly
different versions checked out at once.  Unless this is a problem with
Visual Source Safe I'd try that approach instead of trying to make
jenkins do it the wrong way.

-- 
   Les Mikesell
 lesmikes...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


setting hudson.plugins.active-directory.ActiveDirectorySecurityRealm.forceLdaps

2013-09-25 Thread lance . e . mead . ctr
The wiki page for the actuve directory plugin says to 
set  "hudson.plugins.active-directory.ActiveDirectorySecurityRealm.forceLdaps", 
 but no where can I find information on how this is to be done.  Is it a 
line in the config.xml?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


stop mirroring Source Control folder structure in jenkins workfolder

2013-09-25 Thread Al Jay
I am using Jenkings 1.531 on Windows 8 for evaluation. I am trying to build 
VB6.NET Software with it.
I installed the Visual Source Safe plugin as this still is the version 
control we are using. i set it as the SCM in the job I created
I have a Job in which I use the version control path 
$/Solution/Project1/foo1/bar1

In advanced Settings of the job I set the workfolder to be C:\Source\bar1

In C:\Source I have a batch file which I am calling with jenkins as build 
action, which again calls vb6.exe C:\Source\bar1\bar.vpb /make

Then Jenkins does the following: It creates the folders 
C:\Source\bar1\Solution\Project1\foo1\bar1 and checks out the files in this 
folder. So my whole project doesn't work.

I would leave the workfolder to standard and just change my batch file, but 
then I had to change the bar.vbp project file which is referencing the 
libraries I need for compiling. All the other developers are checkoung out 
the source code at C:\Source. When my build system checksout out the 
bar.vbp that mans that the references to the libraries are broken because 
their bar.vbp is referencing them in C:\Source and if I wanted it to work 
on Jenkins, I would have to change it to 
C:\path_to_jenkins\jobs\jobname\workspace\Solution\Project1\foo1\bar1 or to 
C:\Source\bar1\Solution\Project1\foo1\bar1. Then again if I accidentally 
check in my bar.vbp to the Source Control and the other developers are 
checking it to their working folders, that means that they are no longer 
able to compile the project via Visual Studio.

So my question in general is: How do I tell Jenkins to stop mirroring out 
the structure of the Source control and just check out the sources to be in 
C:\Source\bar1\?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Jenkins Build node CentOS 6.4

2013-09-25 Thread teilo


On Wednesday, 25 September 2013 14:49:05 UTC+1, flex...@googlemail.com 
wrote:
>
> Hi teilo,
>
> I created the file custom.sh in /etc/profile.d/ folder:
>
> export LANG=en_US.UTF-8
> export LC_ALL=en_US.UTF-8
>
> which should (as far I know) set the settings system wide.
>
>
no it doesn't - see my earlier email
 

> Calling echo $LANG as jenkins user in the bash shows
> echo $LANG
> en_US.UTF-8
>
>
 that doesn''t matter as you are running that in an INTERACTIVE LOGIN shell 
- what happens when you run the command directly via ssh (not in a shell in 
ssh but directly in ssh - again see previous post).

if you want to change this system wide then you probably need to change 
/etc/sysconfig/i18n - but there may be other places...

try searching in your favourite search engine on this subject and it will 
enlighten you,

e.g. 
  
https://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin#SSHSlavesplugin-Loginprofilefiles
  
http://stackoverflow.com/questions/216202/why-does-an-ssh-remote-command-get-fewer-environment-variables-then-when-run-man


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


RE: Setting Keep Forever

2013-09-25 Thread Ginga, Dick
Thanks! I will give this a try

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of 
matthew.web...@diamond.ac.uk
Sent: Wednesday, September 25, 2013 9:35 AM
To: jenkinsci-users@googlegroups.com
Subject: RE: Setting Keep Forever

Use https://wiki.jenkins-ci.org/display/JENKINS/Conditional+BuildStep+Plugin to 
test the release parameter, conditionally run a shell script that does 
something like:
   java -jar /path/to/jenkins-cli.jar -s http://jenkins:8080/ keep-build 
 

You need to sort out authentication for the jenkins-cli.jar, and also I'm not 
sure whether you can mark a still-running job as "keep forever" (we use this, 
but for a slightly different case).

Matthew Webber

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ginga, Dick
Sent: 25 September 2013 13:57
To: jenkinsci-users@googlegroups.com
Subject: Setting Keep Forever

Is there a build step available that can mark the current build as Keep 
Forever? I have a core build job and when it builds a "Release" build based on 
a parameter, I want that one to stay forever.




--

This e-mail and any attachments may contain confidential, copyright and or 
privileged material, and are for the use of the intended addressee only. If you 
are not the intended addressee or an authorised recipient of the addressee 
please notify us of receipt by returning the e-mail and do not use, copy, 
retain, distribute or disclose the information in or attached to the e-mail.
Any opinions expressed within this e-mail are those of the individual and not 
necessarily of Diamond Light Source Ltd.
Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments 
are free from viruses and we cannot accept liability for any damage which you 
may sustain as a result of software viruses which may be transmitted in or with 
the message.
Diamond Light Source Limited (company no. 4375679). Registered in England and 
Wales with its registered office at Diamond House, Harwell Science and 
Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom


--
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Jenkins Build node CentOS 6.4

2013-09-25 Thread flex . guse
Hi teilo,

I created the file custom.sh in /etc/profile.d/ folder:

export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8

which should (as far I know) set the settings system wide.

Calling echo $LANG as jenkins user in the bash shows
echo $LANG
en_US.UTF-8

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Jenkins Build node CentOS 6.4

2013-09-25 Thread teilo
How did you configure the system settings?

an interactive user goes through different initialisation steps in the 
shell than non-interactive remotly executed commands.
e.g. if you add this into your .profile then that would explain the 
difference.

I am presuming you are launching slaves via ssh?
in which case what does 'ssh jenkinsuser@jenkinshost echo $LANG' show you?


On Wednesday, 25 September 2013 12:06:38 UTC+1, flex...@googlemail.com 
wrote:
>
> Hi Everybody,
>
> we run a Jenkins 1.532 *Build master* which uses the SSH Slave plugin to 
> communicate with two *Build slaves* (CentOS 6.4 machines). In our 
> configuration the Build slaves are dumb, the Java JDK 1.7 and Maven 3.0.5 
> is provided by the master. This works, the Build master is able to start 
> jobs on the slaves.
>
> We have some serious problems with the used encoding on the *Build Slaves*. 
> We are using some files in our test resources with UTF-8 characters in it's 
> names (japanese, chinese and arabic) which leds in the current setup to 
> build failures.
>
> If we look at the System properties provided by Jenkins (Jenkins > nodes > 
> Buildnode > Systeminformation) these settings are given:
>
> *System Settings*
> file.encoding = ANSI_X3.4-1968sun.jnu.encoding = ANSI
> _X3.4-1968
> *Environment Variables*
> _/usr/bin/javaHOME/home/jenkinsLOGNAMEjenkinsMAIL/var/mail/jenkinsNLSPATH
> /usr/dt/lib/nls/msg/%L/%N.catOLDPWD/home/jenkinsPATH
> /usr/local/bin:/bin:/usr/binPWD/var/lib/jenkinsSHELL/bin/bashSHLVL1...
>
>
> USERjenkinsXFILESEARCHPATH/usr/dt/app-defaults/%L/Dt
> We tweaked the CentOS system settings and if we run "env", we get
> HOSTNAME=build2
> SHELL=/bin/bash
> TERM=xterm
> HISTSIZE=1000
> LC_ALL=en_US.UTF-8
> USER=jenkins
>
> LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:
> MAIL=/var/spool/mail/jenkins
> PATH=/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin
> PWD=/home/jenkins
> LANG=en_US.UTF-8
> HISTCONTROL=ignoredups
> SHLVL=1
> HOME=/home/jenkins
> LOGNAME=jenkins
> CVS_RSH=ssh
> LESSOPEN=|/usr/bin/lesspipe.sh %s
> G_BROKEN_FILENAMES=1
> _=/bin/env
> OLDPWD=/home/jenkins
>
> As you can see the file.encoding and sun.jnu.encoding are different and 
> Jenkins does not recognize the LANG system variable.
>
> The result is it is possible to run the build from the command line on the 
> *Build slave* successfully, the same job started by Jenkins fails.
>
> Starting the slave with JVM arguments -Dfile.encoding=UTF-8 etc. did not 
> help, the plugin EnvInject seems not to help either.
>
> The key question is: why are the environment settings not taken correctly 
> by Jenkins?
>
> Any help is appreciated,
> Christoph
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: LDAP Configuration

2013-09-25 Thread Manjunath DG
Hi Mark,
Yes you have to check with your IT team on the already existing LDAP Server 
details and fill in those in the Jenkins Access Control > Security Realm > 
select LDAP and fill in up with Server which will be provided by your IT team 
in the server column.Please find the below screen shoot which you have to et 
from your IT team and need to fill in those.

Server   
  root DN Allow blank rootDN   
  User search base
  User search filter
  Group search base
  Manager DN
  Manager Password  

Regards,
Manjunath D G



 From: mak1453 
To: jenkinsci-users@googlegroups.com 
Sent: Wednesday, September 25, 2013 4:23 PM
Subject: LDAP Configuration
 


Hello,

Please forgive me if I am asking very stupid questions.  I am very new to LDAP. 
I would like to integrate LDAP with Jenkins so that our existing users can use 
their  domain user names to login to Jenkins. I have a server on which Jenkins 
runs and people login using "Jenkins’s own user database" method. I enabled 
security and selected LDAP in the Security Realm section but I am confused 
about how to fill in the required information. For example, for the LDAP 
server, Do I have to install a server on the machine? Our organization is split 
in many branches and IT is handled by a different department. If they have 
already configured LDAP in the organization, do I need to use that? Also, how 
will I enforce to use the domain credentials? If someone can shed some light on 
this matter, I would really appreciate it. 

Thank you,
mak
-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


RE: Setting Keep Forever

2013-09-25 Thread Matthew.Webber
Use https://wiki.jenkins-ci.org/display/JENKINS/Conditional+BuildStep+Plugin to 
test the release parameter, conditionally run a shell script that does 
something like:
   java -jar /path/to/jenkins-cli.jar -s http://jenkins:8080/ keep-build 
 

You need to sort out authentication for the jenkins-cli.jar, and also I’m not 
sure whether you can mark a still-running job as “keep forever” (we use this, 
but for a slightly different case).

Matthew Webber

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ginga, Dick
Sent: 25 September 2013 13:57
To: jenkinsci-users@googlegroups.com
Subject: Setting Keep Forever

Is there a build step available that can mark the current build as Keep 
Forever? I have a core build job and when it builds a “Release” build based on 
a parameter, I want that one to stay forever.



-- 

This e-mail and any attachments may contain confidential, copyright and or 
privileged material, and are for the use of the intended addressee only. If you 
are not the intended addressee or an authorised recipient of the addressee 
please notify us of receipt by returning the e-mail and do not use, copy, 
retain, distribute or disclose the information in or attached to the e-mail.

Any opinions expressed within this e-mail are those of the individual and not 
necessarily of Diamond Light Source Ltd. 

Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments 
are free from viruses and we cannot accept liability for any damage which you 
may sustain as a result of software viruses which may be transmitted in or with 
the message.

Diamond Light Source Limited (company no. 4375679). Registered in England and 
Wales with its registered office at Diamond House, Harwell Science and 
Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom

 







-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Jenkins for scala

2013-09-25 Thread sara hari prasad

Hi All,
 
 I am very new to Jenkins tool. We are using scala programming language in 
my project. I was configure the scalastyle in SBT which plugin i have to 
install the jenkins. could anyone please give the suggestion .


Best Regards,

Hari.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Setting Keep Forever

2013-09-25 Thread Ginga, Dick
Is there a build step available that can mark the current build as Keep 
Forever? I have a core build job and when it builds a "Release" build based on 
a parameter, I want that one to stay forever.

Dick Ginga, Informatics R&D
PerkinElmer Inc. | For the Better
HUMAN HEALTH | ENVIRONMENTAL HEALTH
940 Winter Street, Waltham MA 02451

dick.gi...@perkinelmer.com
Mobile - 508-847-1434
Office - 781-663-6947


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Jenkins Build node CentOS 6.4

2013-09-25 Thread flex . guse
It helped to add a Shell script execution as Pre-Build step:

export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8

But this is only a workaround and does not answer the question why the 
system settings are not taken correctly.

Any ideas?
Christoph

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Jenkins Build node CentOS 6.4

2013-09-25 Thread flex . guse
Hi Everybody,

we run a Jenkins 1.532 *Build master* which uses the SSH Slave plugin to 
communicate with two *Build slaves* (CentOS 6.4 machines). In our 
configuration the Build slaves are dumb, the Java JDK 1.7 and Maven 3.0.5 
is provided by the master. This works, the Build master is able to start 
jobs on the slaves.

We have some serious problems with the used encoding on the *Build Slaves*. 
We are using some files in our test resources with UTF-8 characters in it's 
names (japanese, chinese and arabic) which leds in the current setup to 
build failures.

If we look at the System properties provided by Jenkins (Jenkins > nodes > 
Buildnode > Systeminformation) these settings are given:

*System Settings*
file.encoding = ANSI_X3.4-1968sun.jnu.encoding = ANSI
_X3.4-1968
*Environment Variables*
_/usr/bin/javaHOME/home/jenkinsLOGNAMEjenkinsMAIL/var/mail/jenkinsNLSPATH
/usr/dt/lib/nls/msg/%L/%N.catOLDPWD/home/jenkinsPATH
/usr/local/bin:/bin:/usr/binPWD/var/lib/jenkinsSHELL/bin/bashSHLVL1...


USERjenkinsXFILESEARCHPATH/usr/dt/app-defaults/%L/Dt
We tweaked the CentOS system settings and if we run "env", we get
HOSTNAME=build2
SHELL=/bin/bash
TERM=xterm
HISTSIZE=1000
LC_ALL=en_US.UTF-8
USER=jenkins
LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:
MAIL=/var/spool/mail/jenkins
PATH=/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin
PWD=/home/jenkins
LANG=en_US.UTF-8
HISTCONTROL=ignoredups
SHLVL=1
HOME=/home/jenkins
LOGNAME=jenkins
CVS_RSH=ssh
LESSOPEN=|/usr/bin/lesspipe.sh %s
G_BROKEN_FILENAMES=1
_=/bin/env
OLDPWD=/home/jenkins

As you can see the file.encoding and sun.jnu.encoding are different and 
Jenkins does not recognize the LANG system variable.

The result is it is possible to run the build from the command line on the 
*Build 
slave* successfully, the same job started by Jenkins fails.

Starting the slave with JVM arguments -Dfile.encoding=UTF-8 etc. did not 
help, the plugin EnvInject seems not to help either.

The key question is: why are the environment settings not taken correctly 
by Jenkins?

Any help is appreciated,
Christoph

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


LDAP Configuration

2013-09-25 Thread mak1453
Hello,

Please forgive me if I am asking very stupid questions.  I am very new to 
LDAP. I would like to integrate LDAP with Jenkins so that our existing 
users can use their  domain user names to login to Jenkins. I have a server 
on which Jenkins runs and people login using "Jenkins’s own user database" 
method. I enabled security and selected LDAP in the Security Realm section 
but I am confused about how to fill in the required information. For 
example, for the LDAP server, Do I have to install a server on the machine? 
Our organization is split in many branches and IT is handled by a different 
department. If they have already configured LDAP in the organization, do I 
need to use that? Also, how will I enforce to use the domain credentials? 
If someone can shed some light on this matter, I would really appreciate 
it. 

Thank you,
mak

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.