jboynes 2004/05/10 11:08:53
Modified: . README.txt Log: Changes to run instructions from Archimedes Trajano Revision Changes Path 1.12 +59 -48 incubator-geronimo/README.txt Index: README.txt =================================================================== RCS file: /home/cvs/incubator-geronimo/README.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- README.txt 25 Apr 2004 23:39:41 -0000 1.11 +++ README.txt 10 May 2004 18:08:53 -0000 1.12 @@ -1,48 +1,59 @@ -Welcome to Geronimo -=================== - -To build me please install Maven from here - version b10 or later. - - http://maven.apache.org/ - -In addition you should have JDK 1.4.x installed with JAVA_HOME -environment defined to point to this JDK. - -In the following examples, '$>' is your prompt, so if you see '$>maven', at your prompt, type in 'maven' (without the quotes) and then press [enter]. - -To build Geronimo running all of the unit test cases, compileing all the Geronimo sources and installing them in your local maven repository: - - $>maven - -To build and run the server, change into the assembly directory and type: - - $>maven - $>maven run:server - -To do a clean rebuild of Geronimo type - - $>maven rebuild - - -or (a slower option)- - - $>maven clean - $>maven - -To only build select modules (assumes that depends are installed already): - - $>maven -Dmodules=common,core - -To clean your workspace: - - $>maven clean - -NOTE: You need to build the server first for this to work due to a problem - with dependencies & the reactor. - -To removal all build generated files: - - $>maven clobber - -For the HTML website: - - $>maven site +Welcome to Geronimo +=================== + +To build me please install Maven from here - version b10 or later. + + http://maven.apache.org/ + +In addition you should have JDK 1.4.x installed with JAVA_HOME +environment defined to point to this JDK. + +In the following examples, '$>' is your prompt, so if you see +'$>maven', at your prompt, type in 'maven' (without the quotes) +and then press [enter]. + +To build Geronimo running all of the unit test cases, compiling +all the Geronimo sources and installing them in your local maven +repository: + + $>maven + +To build and run the server, change into the assembly directory and +type: + + $>maven + $>cd target + $>java -jar bin/server.jar org/apache/geronimo/Server + +To stop the server use ctrl-C or an equivalent; a proper shutdown +command will be made available in a future release. +(See http://wiki.apache.org/geronimo/Running for more information). + +To do a clean rebuild of Geronimo type + + $>maven rebuild + + -or (a slower option)- + + $>maven clean + $>maven + +To only build select modules (assumes that depends are installed +already): + + $>maven -Dmodules=common,core + +To clean your workspace: + + $>maven clean + +NOTE: You need to build the server first for this to work due to + a problem with dependencies & the reactor. + +To removal all build generated files: + + $>maven clobber + +For the HTML website: + + $>maven site
