Hi, I'm working on a Tapestry component library and wanted to add javadoc.
_I added the following to my pom.xml:_ <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <configuration> <linksource>true</linksource> <taglet>org.apache.tapestry5.javadoc.TapestryDocTaglet</taglet> <tagletArtifact> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-javadoc</artifactId> <version>${tapestry-release-version}</version> </tagletArtifact> </configuration> </plugin> </plugins> </reporting> _And added following to my components javadoc:_ /** * ... * @tapestrydoc */ public class SomeComponent { ... } _Then I __ran:_ mvn javadoc:javadoc _But get the following:_ ... warning - @tapestrydoc is an unknown tag. And the component parameters are not added to the javadoc... What am I doing wrong here?