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

From version 97.1
edited by David Avendasora
on 2009/06/18 13:29
Change comment: There is no comment for this version
To version 99.1
edited by Paul Hoadley
on 2010/07/31 07:36
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.avendasora
1 +XWiki.paulh
Content
... ... @@ -1,7 +1,5 @@
1 -Hudson is a build server that takes the chore of the building and can do it automatically, based on all kinds of variables.
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]].
2 2  
3 -The complete introduction has been show on wowodc-west in 2009.
4 -
5 5  There are a couple different ways to run Hudson. The easiest is to run it as a standalone application.
6 6  
7 7  === Standalone Installation ===
... ... @@ -20,12 +20,21 @@
20 20  
21 21  {{/code}}
22 22  
23 -1. Point your browser to: http:~/~/localhost:8080/hudson
24 -1. Start setting up jobs!
21 +{{info}}
25 25  
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.
24 +{code}
25 +java -DHUDSON_HOME=/Developer/Hudson/Home -jar /Developer/Hudson/hudson.war -httpPort=9080 --ajp13Port=9009
26 +{code}
27 +
28 +{{/info}}
29 +
30 +1. Point your browser to: [[http://localhost:8080/]]
31 +1. Start setting up jobs
32 +
26 26  === Servlet Container Installation ===
27 27  
28 -1. Install Tomcat from [[http://www.macports.org]] with the command
35 +1. Install Tomcat from [[http://www.macports.org]] with the command
29 29  
30 30  {{noformat}}
31 31  
... ... @@ -62,7 +62,7 @@
62 62  
63 63  1. download Hudson from [[http://hudson.dev.java.net]], take care that you use the contextual menu to download the link hudson war file
64 64  1. create a folder /opt/local/var/db/hudson (this will be the place where hudson will store it's stuff
65 -1. change ownership of that folder with ownership //www:_www//
72 +1. change ownership of that folder with ownership www:_www
66 66  1. add to /opt/local/share/java/tomcat6/conf/setenv.local:
67 67  
68 68  {{noformat}}
... ... @@ -72,9 +72,8 @@
72 72  
73 73  {{/noformat}}
74 74  
75 -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.
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.
76 76  1. Goto [[http://localhost:8080/hudson]] and you can start configuring your Hudson build server
77 -
78 78  
79 79  === Building WO Apps ===
80 80