From: Konstantin P. <ko...@us...> - 2006-09-06 09:31:40
|
Update of /cvsroot/xdoclet-plugins/xdoclet-plugins/taglib In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv15999/taglib Modified Files: pom.xml Log Message: XDP-195-197 fixed Index: pom.xml =================================================================== RCS file: /cvsroot/xdoclet-plugins/xdoclet-plugins/taglib/pom.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** pom.xml 30 Aug 2006 10:09:39 -0000 1.4 --- pom.xml 6 Sep 2006 09:28:16 -0000 1.5 *************** *** 26,29 **** --- 26,35 ---- </execution> </executions> + <!-- + since maven plusgin does not specify dependencies + on concrete xdoclet-2 plugins, you must specify them + explicitely. as well as dependencies which may be needed by + plugin itself + --> <dependencies> <dependency> *************** *** 43,53 **** --- 49,74 ---- <configuration> <configs> + <!-- + each config defines single xdoclet2 run + for some plugins. more than one run can be specified with + different parameters + --> <config> <components> + <!-- + components are xdoclet2 plugins to be run + and sometimes configuration objects + --> <component> + <!-- classname of the component --> <classname>org.xdoclet.plugin.qtags.impl.QTagImplPlugin</classname> </component> <component> <classname>org.xdoclet.plugin.qtags.impl.QTagLibraryPlugin</classname> + <!-- + components can be configured with parameters + configuration specified here overrides common configuration settings + for config + --> <params> <packagereplace>org.xdoclet.plugin.${xdoclet.plugin.namespace}.qtags</packagereplace> *************** *** 71,74 **** --- 92,102 ---- </components> <includes>**/*.java</includes> + <!-- + common parameters for all used plugins. individual plugins + can override them. + --> + <params> + <destdir>${project.build.directory}/generated-resources/xdoclet</destdir> + </params> </config> </configs> |