Hi,

<project><url>?

-Tim

Holt, Jack C. schrieb:
I have a project that contains several subprojects.  When I run "mvn
site" in the top-level project's directory, the index.html contains
links for the subprojects but they point to
http://maven.apache.org/index.html.  I assume this is a default that is
not getting overridden because I haven't configured my POM's correctly.

The main POM contains:

      <reporting>

        <plugins>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-jxr-plugin</artifactId>

            </plugin>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-javadoc-plugin</artifactId>

                <configuration>

                    <aggregate>true</aggregate>

                </configuration>

            </plugin>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-checkstyle-plugin</artifactId>

            </plugin>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-pmd-plugin</artifactId>

                <configuration>

                    <targetJdk>1.5</targetJdk>

                </configuration>

            </plugin>

            <plugin>

                <groupId>org.codehaus.mojo</groupId>

                <artifactId>taglist-maven-plugin</artifactId>

                <configuration>

                    <tags>

                        <tag>TODO</tag>

                        <tag>@todo</tag>

                        <tag>FIXME</tag>

                        <tag>XXX</tag>

                    </tags>

                </configuration>

            </plugin>

        </plugins>

    </reporting>

Is there something I need to add to the reporting section?



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

Reply via email to