Last modified by Bastian Triller on 2012/08/24 19:38

From version 99.1
edited by Paul Hoadley
on 2010/07/31 07:36
Change comment: There is no comment for this version
To version 101.1
edited by fcobia
on 2009/10/22 10:37
Change comment: Additional command line option for Hudson

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.paulh
1 +XWiki.fcobia
Content
... ... @@ -1,5 +1,7 @@
1 -[[Hudson>>http://hudson-ci.org/]] is an "extensible continuous integration server". It monitors repeated executions of jobs, such as building software projects, and can be used to build WebObjects applications and frameworks. Hudson is an open source project, and can be used at no cost. An introductory presentation on building WebObjects projects with Hudson was given by Mike Schrag at WOWODC-West in 2009, and the video can be [[purchased from wocommunity.org>>http://www.wocommunity.org/apps/WebObjects/WOCommunity.woa/wa/recordings]].
1 +Hudson is a build server that takes the chore of the building and can do it automatically, based on all kinds of variables.
2 2  
3 +The complete introduction has been show on wowodc-west in 2009.
4 +
3 3  There are a couple different ways to run Hudson. The easiest is to run it as a standalone application.
4 4  
5 5  === Standalone Installation ===
... ... @@ -20,7 +20,7 @@
20 20  
21 21  {{info}}
22 22  
23 -If you have an instance of tomcat or AJP running in a different process you can also use the \-httpPort= and \--ajp13Port= options to change the ports used.
25 +If you have an instance of tomcat or AJP running in a different process you can also use the -httpPort= and --ajp13Port= options to change the ports used.
24 24  {code}
25 25  java -DHUDSON_HOME=/Developer/Hudson/Home -jar /Developer/Hudson/hudson.war -httpPort=9080 --ajp13Port=9009
26 26  {code}
... ... @@ -27,12 +27,12 @@
27 27  
28 28  {{/info}}
29 29  
30 -1. Point your browser to: [[http://localhost:8080/]]
31 -1. Start setting up jobs
32 +1. Point your browser to: http:~/~/localhost:8080/
33 +1. Start setting up jobs!
32 32  
33 33  === Servlet Container Installation ===
34 34  
35 -1. Install Tomcat from [[http://www.macports.org]] with the command
37 +1. Install Tomcat from [[http://www.macports.org]] with the command
36 36  
37 37  {{noformat}}
38 38  
... ... @@ -69,7 +69,7 @@
69 69  
70 70  1. download Hudson from [[http://hudson.dev.java.net]], take care that you use the contextual menu to download the link hudson war file
71 71  1. create a folder /opt/local/var/db/hudson (this will be the place where hudson will store it's stuff
72 -1. change ownership of that folder with ownership www:_www
74 +1. change ownership of that folder with ownership //www:_www//
73 73  1. add to /opt/local/share/java/tomcat6/conf/setenv.local:
74 74  
75 75  {{noformat}}
... ... @@ -79,8 +79,9 @@
79 79  
80 80  {{/noformat}}
81 81  
82 -1. Install Hudson in Tomcat: goto [[http://localhost:8080]], login with the user and password that you have created in the tomcat-users.xml, and upload hudson.war to the tomcat server.
84 +1. Install Hudson in Tomcat: goto [[http://localhost:8080]], login with the user and password that you have created in the tomcat-users.xml, and upload hudson.war to the tomcat server.
83 83  1. Goto [[http://localhost:8080/hudson]] and you can start configuring your Hudson build server
86 +
84 84  
85 85  === Building WO Apps ===
86 86