From: <her...@fr...> - 2006-07-24 23:11:36
|
Le Lundi 24 Juillet 2006 07:02, Wendy Smoak a =E9crit : > On 7/23/06, Herv=E9 BOUTEMY <her...@fr...> wrote: > > Nothing important has changed, because the tool works great and I had no > > new feature to add, just minor enhancements. > > I started to work on Maven 1 plugin and Maven 2 plugin, but nothing is > > finished yet : is there really a user need ? > > Hi there! Yes, I'd like to use DTDDoc as part of Struts' Maven 2 > build, so that DTD documentation could be part of the generated > website. > > We're using LiveDTD right now. I chose it because neither LiveDTD nor > DTDDoc had a Maven 2 plugin, and LiveDTD worked with the existing dtd > while (as I understand it) the comments would need to be modified to > work with DTDDoc. The dtds are here: http://struts.apache.org/dtds/ > > If you put DTDDoc in the public repository on ibiblio, release a Maven > 2 plugin and announce it on the Maven user list, you're likely to pick > up at least a couple of new users. ;) > > Thanks! ok, ok, I'll work again on it :) I opened JIRA MAVENUPLOAD-1011 and MAVENUPLOAD-1012 to have DTDDoc itself o= n=20 ibiblio then I published a snapshot dtddoc-maven-plugin on=20 http://dtddoc.sourceforge.net/maven2/, with its dependencies. If your can try it and give me your impressions, that would help me. To be able to use the temporary dtddoc repository , you'll need to add it i= n=20 your setting.xml : <profiles> <profile> <activation><activeByDefault>true</activeByDefault></activation> <repositories> <repository> <id>dtddoc</id> <url>http://dtddoc.sf.net/maven2</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>dtddoc</id> <url>http://dtddoc.sf.net/maven2</url> </pluginRepository> </pluginRepositories> </profile> </profiles> regards Herv=E9 |