Changes for page Building WOLips

Last modified by Johann Werner on 2015/02/13 01:40

From version 121.1
edited by Pascal Robert
on 2012/02/11 04:59
Change comment: There is no comment for this version
To version 119.1
edited by Pascal Robert
on 2011/09/18 12:18
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,6 +1,11 @@
1 -{{tip title="Not Required!"}}
2 -You do not have to build WOLips to use it. It is easily available via Eclipse's Software Update functionality. The update site is: [http://wocommunity.org/wolips/3.7/stable/]
1 +{{warning}}
2 +Since WOLips moved away to GitHub, this page needs some reworking. In the meantime, please adapt your build procedure to use Git instead of SVN.
3 3  
4 +{color:#333333}WOLips is now located GitHub at {color}{color:#006daf}[https://github.com/wolips/wolips/]{color}. The SVN repository at objectstyle is now deprecated.
5 +{{/warning}}
6 +
7 +{{tip title="Not Required!"}}
8 +You do not have to build WOLips to use it. It is easily available via Eclipse's Software Update functionality. The update site is: [http://webobjects.mdimension.com/hudson/job/WOLips37Current/lastSuccessfulBuild/artifact/site/]
4 4  {{/tip}}
5 5  
6 6  {{note}}
... ... @@ -84,23 +84,19 @@
84 84  
85 85  Hudson is a Java base continuous build server that allows you to build and test your project automatically. It can be easily configured to build WOLips in a few simple steps.
86 86  
87 -1. Install Eclipse 3.7. You need it to be able to build WOLips.
88 -1. Copy the necessary plugins from your machine to the Eclipse installation on the server. In this example it has been copied to /usr/local/eclipse
89 -The currently required plugins for a deployment build are
90 - JProfiler (Update Site: [[http://webobjects.mdimension.com/jprofiler6/]])
91 - JRebel (Update Site : [[http://www.zeroturnaround.com/update-site/]])
92 -1. Create a new job in Jenkins to build WOLips. You can use the [[following sample config>>https://github.com/wocommunity/JenkinsJobs/tree/master/WOLips]] or you can add a new job with the following configuration:
93 -11. Project Name: WOLips
94 -11. Git Repositories: git:~/~/github.com/wolips/wolips.git
95 -11. Use update: Checked
96 -11. Poll SCM: 59 * ** * ** //(59 can be replaced with any number between 0 and 59)//
92 +1. Add a new job with the following configuration
93 +Project Name: WOLips
94 +Git Repositories: [[https://github.com/wolips/wolips.git]]
95 +Local module directory (optional): wolips
96 +Use update: Checked
97 +Poll SCM: 59 * ** * ** //(59 can be replaced with any number between 0 and 59)//
97 97  1. Add the following build tasks to the job
98 98  
99 99  {{code title="Execute Shell"}}
100 100  
101 -echo build.version=3.7.${BUILD_NUMBER} > build.properties
102 -echo eclipse.home=/usr/local/eclipse >> build.properties
103 -echo user.home=${WORKSPACE} >> build.properties
102 +echo build.version=3.4.${SVN_REVISION} > wolips/build.properties
103 +echo eclipse.home=/usr/local/eclipse >> wolips/build.properties
104 +echo user.home=${WORKSPACE} >> wolips/build.properties
104 104  
105 105  {{/code}}
106 106  
... ... @@ -119,6 +119,12 @@
119 119  
120 120  {{/code}}
121 121  
123 +1. Copy eclipse with the necessary plugins installed to your build server. In this example it has been copied to /usr/local/eclipse
124 +The currently required plugins for a deployment build are
125 +1*. JProfiler ([[Update Site>>http://webobjects.mdimension.com/jprofiler6/]])
126 +1*. m2Eclipse Maven ([[Update Site>>http://m2eclipse.sonatype.org/sites/m2e]])
127 +1*. JRebel ([[Update Site>>http://www.zeroturnaround.com/update-site/]])
128 +
122 122  == Preparation for building WOLips on Windows operating systems (NT 5.0 and higher) ==
123 123  
124 124  For building WOLips on Windows operating systems, some minor changes have to be made. Instead of following and solving the build errors, you may follow the steps described below.