Wiki source code of Quick Start

Version 51.1 by Henrique Prange on 2009/03/18 10:00

Show last authors
1 == Outline ==
2
3 {{toc style="disc" indent="20px"}}{{/toc}}
4
5 == Step 1: Installing Maven ==
6
7 Downloading and installing the latest version of [[Maven>>http://maven.apache.org/download]] is the first step to start using this tool.
8
9 {{tip title="Mac Tip"}}
10
11 install macports [http://www.macports.org/install.php], then on the terminal
12 {noformat}sudo port install maven2{noformat}
13
14 In future, to keep this up to date:
15 {noformat}sudo port upgrade maven2{noformat}
16
17 {{/tip}}
18
19 **NOTE**: It is very helpful if you understand some Maven concepts before continuing with this tutorial. See [[General Maven Documentation]] for more information.
20
21 == Step 2: Configuring your Maven Settings ==
22
23 Before start using Maven, you have to configure it in order to use the plug-ins provided by WOProject. General Maven configuration is made in a settings.xml file. This file can be found in a folder called ##.m2## in each user's home directory (,,/.m2 on Unix systems and C:ocuments and SettingsserNamem2 on Windows). If this file does not yet exist, you can just create it.,,
24
25 You have to define the WOProject plug-in group and the repositories to download the plug-ins. The following xml is sufficient to configure maven for using WOProject-maven plugin:
26
27 {{noformat}}
28
29 <settings xmlns="http://maven.apache.org/POM/4.0.0"
30 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
31 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
32 http://maven.apache.org/xsd/settings-1.0.0.xsd">
33 <pluginGroups>
34 <pluginGroup>org.objectstyle.woproject.maven2</pluginGroup>
35 </pluginGroups>
36 <profiles>
37 <profile>
38 <id>woproject</id>
39 <activation>
40 <activeByDefault>true</activeByDefault>
41 </activation>
42 <pluginRepositories>
43 <pluginRepository>
44 <id>wocommunity.releases</id>
45 <name>WOCommunity Releases Repository</name>
46 <url>
47 http://maven.wocommunity.org/content/groups/public
48 </url>
49 <releases>
50 <enabled>true</enabled>
51 </releases>
52 <snapshots>
53 <enabled>false</enabled>
54 </snapshots>
55 </pluginRepository>
56 <pluginRepository>
57 <id>wocommunity.snapshots</id>
58 <name>WOCommunity Snapshots Repository</name>
59 <url>
60 http://maven.wocommunity.org/content/groups/public-snapshots
61 </url>
62 <releases>
63 <enabled>false</enabled>
64 </releases>
65 <snapshots>
66 <enabled>true</enabled>
67 </snapshots>
68 </pluginRepository>
69 </pluginRepositories>
70 </profile>
71 </profiles>
72 </settings>
73
74 {{/noformat}}
75
76 **NOTE**: You can download the complete and most recent settings.xml [[here>>^settings.xml]]. See [[Maven Settings Reference>>http://maven.apache.org/settings.html]] if you want more information about additional options for the settings.xml file.
77
78 == Step 3: Installing WebObjects Libraries ==
79
80 Maven takes control of all your project's dependencies. To develop WebObjects applications, Maven has to reference the WebObjects jars. You have to install the WebObjects libraries into your local repository to accomplish this:
81
82 {{noformat}}
83
84 mvn wobootstrap:install
85
86 {{/noformat}}
87
88 **NOTE**: WebObjects must be installed. See the [[maven-wobootstrap-plugin]] documentation for more information. See [[Maven Introduction to Repositories>>http://maven.apache.org/guides/introduction/introduction-to-repositories.html]] if you want more information about Maven repositories.
89
90 {{warning title="Installing the right jars!"}}
91
92 Do *not* link to or install the WebObjects jars located inside {{/System/Library/Frameworks}} or {{/Library/Frameworks}}. If you're installing an older version of WebObjects you must obtain the jars that the WebObjects installer had previously installed into {{/Library/WebObjects/lib}}. For example, the jar {{/Library/WebObjects/lib/JavaWebObjects.jar}} has the complete set of resources and files included for the dependency JavaWebObjects whereas {{/System/Library/Frameworks/JavaWebObjects.framework/Resources/Java/javawebobjects.jar}} does not.
93
94 {{/warning}}
95
96 == Step 4: Creating a WebObjects Project ==
97
98 Archetypes are the fast way to create a new project using Maven. WOProject provides one archetype to create WebObjects Application. Execute the following command to generate a basic WebObjects project:
99
100 {{noformat}}
101
102 mvn archetype:generate -DarchetypeArtifactId=woapplication-archetype \
103 -DarchetypeGroupId=org.objectstyle.woproject.maven2 \
104 -DarchetypeVersion=2.0.16 \
105 -DarchetypeRepository=http://webobjects.mdimension.com/maven2/releases
106
107 {{/noformat}}
108
109 The maven-archetype-plugin will ask the required information to create the new project.
110
111 **NOTE**: You can use archetype catalogs to reduce the number of properties to set while creating a project. See the documentation of [[woapplication-archetype]].
112
113 **NOTE**: You can use archetypes within Eclipse as described [[here>>Maven Create WO Application Project||anchor="m2eclipse"]].
114
115 == Step 5: Importing the Project into Eclipse ==
116
117 The new project is ready to be imported into Eclipse workspace. Use the Eclipse's import wizard (File > Import...) and choose the option "Existing Projects into Workspace". Select the root directory of your new project and finish the import wizard.
118
119 {{note title="Warning"}}
120
121 As Maven takes care of the dependency management, you must use a mechanism to add the jars to your Eclipse build path. There are 3 options:
122 # Use the [mvn eclipse:eclipse|http://maven.apache.org/plugins/maven-eclipse-plugin/] goal to update your .classpath file.
123 # Use the [m2eclipse|http://m2eclipse.codehaus.org/] plug-in for Eclipse.
124 # Use the [q4e|http://code.google.com/p/q4e/] plug-in for Eclipse.
125
126 {{/note}}
127
128 After adding the project dependencies to your Eclipse build path, WOLips can build the project and you will be able to start developing and running the application.
129
130 **NOTE**: This tutorial assumes you have chosen the option 2. You can find more information about IDE integration [[here>>General Maven Documentation||anchor="IDE Integration"]].
131
132 == Step 6: Building WebObjects Applications with Maven ==
133
134 Now, building your project with Maven is easy. Go to the project folder on Terminal and execute:
135
136 {{noformat}}
137
138 mvn clean package
139
140 {{/noformat}}
141
142 This goal will generate a WOA package inside the target folder of your project. It also generates two compressed packages: one for woapplication and other for the webserver resources.
143
144 To install your project into your local repository:
145
146 {{noformat}}
147
148 mvn clean install
149
150 {{/noformat}}
151
152 This will install your project into ##,,/.m2/repository/your/project/groupId/artifactId/version/...,,##