Date: 2004-02-10T04:13:34
Editor: JacekLaskowski <[EMAIL PROTECTED]>
Wiki: Apache Geronimo Wiki
Page: BuildingAndRunning
URL: http://wiki.apache.org/geronimo/BuildingAndRunning
Saved the note about the build order in a wrong section
Change Log:
------------------------------------------------------------------------------
@@ -38,6 +38,15 @@
Running the command `maven site` seems to take up a lot of memory. If you get
an out of memory error, try setting MAVEN_OPTS=-Xmx512m.
+(Feb 02, 2004) Due to one bug fix in the xmlbeans plugin but lack of
resolution of the plugin dependencies problem you should rebuild the xmlbeans
plugin explicitly before building all of geronimo.
+
+{{{
+cd modules/maven-xmlbeans-plugin
+maven rebuild
+cd ../..
+maven
+}}}
+
= Building Offline =
If you're not online (so Maven fails to download), use the -o flag to maven
(i.e. run `maven -o`).
@@ -68,15 +77,6 @@
= Running The Server =
== For HEAD revision: ==
-(Feb 02, 2004)
-Due to one bug fix in the xmlbeans plugin but lack of resolution of the plugin
dependencies problem you should rebuild the xmlbeans plugin explicitly before
building all of geronimo.
-
-cd modules/maven-xmlbeans-plugin
-
-maven rebuild
-cd ../..
-maven
-
(Jan 29, 2004) Deploying and running applications is now a multi step
process. There is a maven plugin to help with the needed tasks. The current
examples are in the assembly directory, and there are maven goals to run each
step. Currently only gbean packages can be reliably deployed, although we
expect this to change rapidly.
1. Prepare your package. For gbean packages this should be a jar or zip file
with class jars at the root and a META-INF/geronimo-service.xml file. The
class jars need to be listed in <path> elements in geronimo-service.xml.
Geronimo modules can include dependency jars in the package by including
<package>true</package> in the dependency's property section. Packages are
built automatically for geronimo modules with a
src/etc/META-INF/geronimo-service.xml file.