You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by da...@apache.org on 2004/04/26 01:39:41 UTC

cvs commit: incubator-geronimo README.txt

dain        2004/04/25 16:39:41

  Modified:    .        README.txt
  Log:
  http://nagoya.apache.org/jira/browse/GERONIMO-152
  
  Revision  Changes    Path
  1.11      +48 -44    incubator-geronimo/README.txt
  
  Index: README.txt
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/README.txt,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- README.txt	23 Sep 2003 01:13:44 -0000	1.10
  +++ README.txt	25 Apr 2004 23:39:41 -0000	1.11
  @@ -1,44 +1,48 @@
  -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.
  -
  -Then just type:
  -
  -	maven
  -	
  -To build Geronimo running all of the unit test cases:
  -
  -	maven build
  -
  -To do a clean rebuild of Geronimo type
  -
  -    maven rebuild
  -
  -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
  -
  -To try run the Geronimo server type:
  -
  -	maven run:main
  -		
  -For the HTML website:
  -
  -	maven site
  \ No newline at end of file
  +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