I'm trying to use Maven on a new J2EE project, and
have based my project structure of information
provided in the following article :

http://www.theserverside.com/resources/article.jsp?l=MavenMagic

For starters, I'm just building an EAR which contains
a WAR, an EJB-Jar and several utility Jars.  I have it
successfully building and can deploy it in JBoss
3.2.3.

My problem is when I try to do site:generate, it
generates all documentation for each of the
sub-projects in their own specific sub-directory area
(in each sub-component's target/docs dir) 

What I <really> want is to generate consolidated
documentation for the ear, which has all the docs for
the war, ejb-jar, utility jars, in one place.


Right now, I have the following goal defined in my top
level maven.xml file  (this causes site:generate to be
invoked in each of my sub-projects) :

   <goal name="myapp:site">

      <maven:reactor basedir="${basedir}/components"
         includes="*/project.xml"
         goals="site:generate"
         banner="generating site..."
         ignoreFailures="false"/>
   </goal>


Any suggestions on how to do this...? 

Thanks in advance ;)

-Lance




        
                
__________________________________
Do you Yahoo!?
Friends.  Fun.  Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/ 

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

Reply via email to