Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Maven Wiki" for change 
notification.

The following page has been changed by cseg:
http://wiki.apache.org/maven/M2UserDocs/050Compiling

------------------------------------------------------------------------------
  [[Navigation(slides)]]
  = Using mvn: Compiling a New Project =
  
- ...
+ To compile your new project, change to the project directory and invoke the 
compile [:M2StandardBuildPhases:phase]:
+ {{{
+ cd myProjectDirName
+ mvn compile
+ }}}
+ The following output will result:
+ {{{
+ [INFO] Scanning for projects...
+ [INFO] 
----------------------------------------------------------------------------
+ [INFO] Building Maven Quick Start Archetype
+ [INFO]    task-segment: [compile]
+ [INFO] 
----------------------------------------------------------------------------
+ 
+ ### Downloading more plugins ###
+ 
+ [INFO] [resources:resources]
+ [INFO] Using default encoding to copy filtered resources.
+ 
+ ### Downloading more plugins ###
+ 
+ [INFO] [compiler:compile]
+ Compiling 1 source file to 
c:\DOCUME~1\USER~1\LOCALS~1\Temp\mvn-sandbox\myProjectDirName\target\classes
+ [INFO] 
----------------------------------------------------------------------------
+ [INFO] BUILD SUCCESSFUL
+ [INFO] 
----------------------------------------------------------------------------
+ [INFO] Total time: 16 seconds
+ [INFO] Finished at: Fri Jan 20 13:59:14 EST 2006
+ [INFO] Final Memory: 2M/10M
+ [INFO] 
----------------------------------------------------------------------------
+ 
+ }}}
  
  ##[[Navigation(siblings)]]
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to