Hi 

I am converting M1 to M2 and I trying set up the javadoc groups for packages.

What is the correct format for <group> in the javadoc:javadoc plugin?

I would like `com.csfb.foo.bar.dao' to fall under DAO
and `com.csfb.foo.bar.ui' to fall under `UI'

<project>
        <build>
        ...
           <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <breakiterator>true</breakiterator>
                          <!-- BROKEN -->
                    <!--  <minmemory>128m</minmemory> -->
                    <!--  <maxmemory>512</maxmemory> -->
                    <bottom>Copyright me</bottom>
                    <source>true</source>
                    <link>
                        http://java.sun.com/j2se/1.4.2/docs/api,
                        http://maven.apache.org/apidocs/
                    </link>
                    <group>
                        "Data Access Objects"
                        "com.csfb.foo.bar.dao"
                        "com.csfb.foo.bar.dao.config"
                        "com.csfb.foo.bar.da.impl"

                        "User Interface"
                        "com.csfb.foo.bar.ui"
                        "com.csfb.foo.bar.ui.services"
                        </group>
                ...
                </plugins> 
        </build> 

        ...
</project>


tia

--
Peter Pilgrim :: J2EE Software Development
Operations/IT - Credit Suisse First Boston, 
Floor 15, 5 Canada Square, London E14 4QJ, United Kingdom
Tel: +44-(0)207-883-4497


==============================================================================
Please access the attached hyperlink for an important electronic communications 
disclaimer: 

http://www.csfb.com/legal_terms/disclaimer_external_email.shtml

==============================================================================


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

Reply via email to