Re: Dependency Graph View plugin issues

2012-05-13 Thread Dan Stine
Restarting Jenkins resolved this issue. On May 2, 10:28 am, Dan Stine wrote: > Thank you for this plugin.  I installed it, and have installed > graphviz.  But I am only seeing some of the expected features.  I am > using Jenkins 1.448 and Dependency Graph View version 0.2. > > I have one set of r

Re: Problem with Nexus authorization from Jenkins

2012-05-13 Thread Dave Hicks
The user is "jenkins" as set up by the RPM. His home directory is /var/lib/jenkins. That's why I edited the .m2/settings.xml file there. I assume that the Maven build being launched is under the same user. On 05/13/2012 05:16 PM, Richard Lavoie wrote: what is the user running the jenkins p

Re: Problem with Nexus authorization from Jenkins

2012-05-13 Thread Richard Lavoie
what is the user running the jenkins process ? you need to put the .m2 folder in the home folder of that user. Richard On 2012-05-13, at 16:53, Dave Hicks wrote: > I'm sure I must be missing something simple. I cannot get my Jenkins job to > authenticate with my Nexus server to download ar

Problem with Nexus authorization from Jenkins

2012-05-13 Thread Dave Hicks
I'm sure I must be missing something simple. I cannot get my Jenkins job to authenticate with my Nexus server to download artifacts. I've got Jenkins installed on a Linux server. I edited the /var/lib/jenkins/.m2/settings.xml file and added the appropriate information. My only guess is tha

RE: Jenkins + Email-ext - How to configure per-project settings?

2012-05-13 Thread Alex Earl
Someone else mentioned this as well, I haven't had a chance to look into it yet. It seems like something with the new post build configuration (dropdown list) stuff. Sent from my Windows Phone -- From: v0idnull Sent: 5/13/2012 12:09 PM To: jenkinsci-users@googlegroups.c

Re: Building but there is no change in repository

2012-05-13 Thread Pete Long
Hi Sami Basically I followed the instructions as per the book Repository URL=> git://github.com/PeteLong/game-of-life.git Branch Specifier (blank for default):=> ** I trust this is the info you wanted. Pete On May 13, 7:15 pm, Sami Tikka wrote: > Wh

Re: Unit test with unicode character passes in IntelliJ, but fails using Jenkins.

2012-05-13 Thread Mark Waite
In the past, I had problems when the character set encoding passed to the Java compiler was different in different environments.  In our case, we were compiling in the ant script with an explicit declaration that the source files were encoded in iso-8859-1, but sometimes we omitted that encoding

Re: Jenkins + Email-ext - How to configure per-project settings?

2012-05-13 Thread v0idnull
I'm running Jenkins 1.463 and Email Ext 2.20. All post build actions are in a drop down menu for me, and they all add form elements except for Email Ext On Sunday, 13 May 2012 15:06:55 UTC-4, Dan Stine wrote: > > Editable Email Notification is checkbox-enabled on my installation, > not a drop-do

Re: Jenkins + Email-ext - How to configure per-project settings?

2012-05-13 Thread Dan Stine
Editable Email Notification is checkbox-enabled on my installation, not a drop-down. I'm running Jenkins 1.448 and Email Ext 2.20. Dan On May 13, 1:40 pm, v0idnull wrote: > So I want to get emails from successful builds and it seems that I need the > email-ext plugin. > > So I've installed it,

Re: Jenkins won't start up after being stopped

2012-05-13 Thread Erimos Wolf
Hello Sami, I solved it with a complete purge of the package (aptitude purge). This solved the problem. For now Jenkins works fine. It must be a configuration error of mine, which led to the problems. Thanks for your Help. Appreciate it very much. Am 13.05.2012 20:08, schrieb Sami Tikka: > You p

Re: Building but there is no change in repository

2012-05-13 Thread Sami Tikka
Which branch did you configure in your job? -- Sami Pete Long kirjoitti 13.5.2012 kello 19.11: > Hi > > I going through the “Jenkins – The Definitive Guide” to basically > learn about this tool. I am finally able to configure a new maven job > to build the project, > > git://github.com/PeteLo

Re: Jenkins won't start up after being stopped

2012-05-13 Thread Sami Tikka
You prolly have the previous Jenkins running. -- Sami Erimos Wolf kirjoitti 13.5.2012 kello 12.53: > I installed Jenkins yesterday (together with apache2). Jenkins started fine > and everything was ok. Then I decided to stop jenkins and apache because I > planned to configure them today. Now

Re: Building but there is no change in repository

2012-05-13 Thread Pete Long
Build is now being triggered by detection of changes in the repositiry BUT I can't explain why it is working now and not before as I have no changes. Maybe small gremlins at work that will surface sometime later .. but for now all is good, Pete On May 13, 5:11 pm, Pete Long wrote: > Hi > > I goi

Jenkins + Email-ext - How to configure per-project settings?

2012-05-13 Thread v0idnull
So I want to get emails from successful builds and it seems that I need the email-ext plugin. So I've installed it, set it up to override global settings, set everything correctly. But when I goto the project settings, when I try to select Editable Email Notifications from the post build actio

Re: Hello Jenkins, how to update plugins

2012-05-13 Thread domi
Hi Syed, you where looking at the right place to get all the info you usually need… For this specific plugin, there has not been any changes since the sources where moved from SVN to Git - therefore the pom was not changed and the link to the sources is still pointing to the old SVN repo. But you

Building but there is no change in repository

2012-05-13 Thread Pete Long
Hi I going through the “Jenkins – The Definitive Guide” to basically learn about this tool. I am finally able to configure a new maven job to build the project, git://github.com/PeteLong/game-of-life.git I have configured the job to monitor the repository for changes every 5 mins and only to per

Re: Starting First Job

2012-05-13 Thread Pete Long
Mark, Sami Many thanks for the suggestion. Good news there has been progress. I am to build the project successfully. I made 3 changes :- 1) Incorporated Mark's suggestion of using the Git Read only URL. 2) In the global configuration I changed the path to Git executable from

Hello Jenkins, how to update plugins

2012-05-13 Thread Syed Mahdi
Hello Jenkins Users, I am new to Jenkins and I am loving it already. Congrats to Jenkins on becoming a totally separate project from Hudson. I hope the Name jenkins makes it mark as it did with Hudson. I have a question, There is an already developed pluigin https://wiki.jenkins-ci.org/display/J

Re: Triggering builds from slave nodes

2012-05-13 Thread teilo
You can poll for the existence of a file with the xtrigger plugin but if one minute isn't satisfactory then you could move the polling into a job that is always running and doesn't return until the file exists. Then your script in ftpd creates this trigger file when it wants the job to be done. T

Re: Unit test with unicode character passes in IntelliJ, but fails using Jenkins.

2012-05-13 Thread Sebastian Kwiatkowski
Thank you for your help! I had to set the project.build.sourceEncoding property to UTF-8 in the POM. Now it works. Sebastian On Sunday, 13 May 2012 14:59:52 UTC+2, Ulli Hafner wrote: > > This seems to be a problem in your build. Does the build run correctly > without jenkins on that Windows

Re: Unit test with unicode character passes in IntelliJ, but fails using Jenkins.

2012-05-13 Thread Ulli Hafner
This seems to be a problem in your build. Does the build run correctly without jenkins on that Windows machine? Did you specify the encoding in your pom.xml? (For some tools like checkstyle you need to add a -Dfile.encoding="UTF-8" on the maven command line). Ulli On 05/13/2012 04:07 AM, Seba

Jenkins won't start up after being stopped

2012-05-13 Thread Erimos Wolf
I installed Jenkins yesterday (together with apache2). Jenkins started fine and everything was ok. Then I decided to stop jenkins and apache because I planned to configure them today. Now when I start Jenkins i get this error: Jenkins startup error I have tried