Can you please explain the issue you are having again? I have the
<reporting> plugin declared only, and when I just run the site, I only get
part of my javadocs aggregated. The other have is turned on/off by a profile
declaration but I specified the -P profile as all the other reports are
generated. When I do a site-deploy, the javadocs get generated, but not
aggregated. Is there an issue with aggregation and -P profiles?



            <!-- javadoc -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <minmemory>128m</minmemory>
                    <maxmemory>512</maxmemory>

<overview>${basedir}/src/main/java/org/delta/esp/dap/overview.html</overview>
                    <packagenames>org.delta.*</packagenames>
                    <show>protected</show>
                    <aggregate>true</aggregate>
                    <doclet>ydoc.doclets.YStandard</doclet>
                    <docletPath>
                        ${projectRoot}\src\main\resources\tools\ydoc-
3.0-jdk1.5\lib\ydoc.jar;${projectRoot}\src\main\resources\tools\ydoc-
3.0-jdk1.5\resources;${build.classes.dir}
                    </docletPath>
                    <additionalparam>-link
http://java.sun.com/j2se/1.5.0/docs/api/ -umlautogen</additionalparam>
                    <tag name="noinspection" description="IntelliJ
Inspection Ignore tag" enabled="false"/>
                </configuration>
            </plugin>





On 11/13/07, Dan Kigelman <[EMAIL PROTECTED]> wrote:
>
> How about the <aggregate>true</aggregate>?
>
>         <plugin>
>             <groupId>org.apache.maven.plugins</groupId>
>             <artifactId>maven-javadoc-plugin</artifactId>
>             <configuration>
>                 <show>protected</show>
>                 <aggregate>true</aggregate>
>                 <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
>                 <docletArtifact>
>                     <groupId>gr.spinellis</groupId>
>                     <artifactId>UmlGraph</artifactId>
>                     <version>4.8</version>
>                 </docletArtifact>
>                 <additionalparam>
>                     -inferrel
>                     -inferdep
>                     -hide java.*
>                     -collpackages java.util.*
>                     -qualify
>                     -postfixpackage
>                     -nodefontsize 9
>                     -nodefontpackagesize 7
>                     -all
>                     -views
>                 </additionalparam>
>             </configuration>
>         </plugin>
>
>
> On Nov 12, 2007 5:45 PM, Mick Knutson <[EMAIL PROTECTED]> wrote:
> > Can you show me what you did? I want to do this, but can't find any
> working
> > examples.
> >
> >
> > On 11/12/07, Joerg Hohwiller <[EMAIL PROTECTED]> wrote:
> > >
> > > -----BEGIN PGP SIGNED MESSAGE-----
> > > Hash: SHA1
> > >
> > > Hi there,
> > >
> > > I want to have an aggregated javadoc for my entire project as well as
> > > javadocs
> > > per module.
> > > I did this by adding the javadoc plugin twice to the reporting
> section.
> > > Is this sick? Is there an other way to do this?
> > >
> > > Thanks
> > >   Jörg
> > > -----BEGIN PGP SIGNATURE-----
> > > Version: GnuPG v1.4.5 (GNU/Linux)
> > > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
> > >
> > > iD8DBQFHOLV/mPuec2Dcv/8RAlkDAJ42lSIlHUm7gw8970g4lHnlzAA2zACfU66m
> > > HREktx7IlCcrxnRXwMduuAk=
> > > =RFak
> > > -----END PGP SIGNATURE-----
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > --
> >
> > Thanks,
> > Mick Knutson
> >
> > http://www.baselogic.com
> > http://www.blincmagazine.com
> > http://www.djmick.com
> > http://www.myspace.com/mickknutson
> > http://www.myspace.com/djmick_dot_com
> > http://www.myspace.com/sexybeotches
> > http://www.thumpradio.com
> > ---
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 

Thanks,
Mick Knutson

http://www.baselogic.com
http://www.blincmagazine.com
http://www.djmick.com
http://www.myspace.com/mickknutson
http://www.myspace.com/djmick_dot_com
http://www.myspace.com/sexybeotches
http://www.thumpradio.com
---

Reply via email to