You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Gubler, Ruediger" <rg...@init-ka.de> on 2009/04/17 12:33:59 UTC

JXR plugin generates wrong links in taglist

Hello,

in the generated taglist are wrong links. 
Files resides in xref (src/main/java) are linked to xref-test (src/test/java).

My configuration is:

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jxr-plugin</artifactId>
        <configuration>
          <linkJavadoc>true</linkJavadoc>
          <javadocDir>target/site/apidocs</javadocDir>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>taglist-maven-plugin</artifactId>
        <configuration>
          <tags>
            <tag>TODO</tag>
            <tag>FIXME</tag>
            <tag>@todo</tag>
            <tag>@deprecated</tag>
          </tags>
        </configuration>
      </plugin>
    </plugins>
  </reporting>


Sorry for the double post. I'm not where the but is.



Yours RĂ¼diger