Hi Eric, sorry but I don't understand part of this message. What's the role of "IListServCommand" in the issue? It is an interface and mailetdocs is about documenting mailets... What maven version are you using?
Stefano 2010/10/8 Eric Charles <[email protected]>: > Hi, > > I have defined in server-mailet pom.xml the mailetdocs plugin according to > http://james.apache.org/mailet/maven-mailetdocs-plugin/plugin-info.html > > I have also added the outputDirectory configuration > (http://james.apache.org/mailet/maven-mailetdocs-plugin/mailetdocs-mojo.html) > > When i run 'mvn mailetdocs:mailetdocs', I've got some log (see after), but > have no file generated (nor in target, nor anywhere else). > > Any idea? > > Tks, > Eric > > (snipped) > > <br /> > <br /> > Typically, IListServCommands will format some text to reply with based off > of resource files > and calls to {...@link org.apache.james.util.XMLResources#getString(String)} > > This allows you to customize the messages sent by these commands by editing > text files and no > * > * @version CVS $Revision: 883484 $ $Date: 2009-11-23 21:22:51 +0100 (lun. > 23 nov. 2009) $ > * @since 2.2.0 > * @see ICommandListservManager > */ > public interface IListServCommand { > > /** > * The name of this command > specified by the 'name' parameter. > eg: > <pre> > <command name="subscribe" class="Subscribe"/> > </pre> > * > * @return the name of this command > */ > public java.lang.String getCommandName(); > > /** > * Perform any required initialization > * > * @param configuration > * @throws ConfigurationException > */ > public void > init(org.apache.james.transport.mailets.ICommandListservManager commandLi > > /** > * Process this command to your hearts content > * > * @param mail > * @throws MessagingException > */ > public void onCommand(org.apache.mailet.Mail mail) throws > javax.mail.MessagingExcepti > > } > > [INFO] Executing Mailets/Matchers Report > [INFO] > ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] > ------------------------------------------------------------------------ > [INFO] Total time: 11.485s > [INFO] Finished at: Fri Oct 08 18:55:02 CEST 2010 > [INFO] Final Memory: 14M/618M > [INFO] > ------------------------------------------------------------------------ > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
