Message: A new issue has been created in JIRA.
--------------------------------------------------------------------- View the issue: http://opensource.atlassian.com/projects/xdoclet/secure/ViewIssue.jspa?key=XDT-209 Here is an overview of the issue: --------------------------------------------------------------------- Key: XDT-209 Summary: Update of maven compilation path Type: New Feature Status: Assigned Priority: Minor Time Spent: Unknown Estimate: 0 minutes Project: XDoclet Component: Apache Module Assignee: xdoclet-devel (Use for new issues) Reporter: Michal Maczka Created: Thu, 19 Dec 2002 2:53 AM Updated: Thu, 19 Dec 2002 2:53 AM Description: This is Maven/XDoclet realted issue I somebody wants to start XDoclet just from time to time but wants to perform java compilation more often he is still required to make update of compilation path manually in maven.xml file. I would like to have possibility of invoking a target like: "xdoclet:updateCompilationPath" which will do the job for me wherever I need it. It can look like: (I am not proffcient in jelly so I beg your pardon about possible syntax mistakes) <goal name="xdoclet:udateCompilationPath"> <j:if test="$maven.xdoclet.ejbdoclet.updateCompilationPath=true"> //this is false by default <path id="ejbdoclet.java.compile.src.set" location="${maven.build.dir}/xdoclet/ejbdoclet"/> <maven:addPath id="maven.compile.src.set" refid="ejbdoclet.java.compile.src.set"/> </j:if> <j:if test="$maven.xdoclet.webdoclet.updateCompilationPath=true"> <path id="webdoclet.java.compile.src.set" location="${maven.build.dir}/xdoclet/webdoclet"/> <maven:addPath id="maven.compile.src.set" refid="webdoclet.java.compile.src.set"/> </j:if> ... and so on <goal> This separation can give user a choice if he wants to have compilation path updated or not. In addition he can use XDoclet for updating the path for him when none of Xdoclet targets/modules will be started but Xdoclet generated sources are alredy existing an d he simply want to reuse them. E.g I could have targets like those then: <goal name="component" prereqs="clean,xdoclet:ejbdoclet,xdoclet:updateCompliationPath,ejb:install"> and <goal name="fast_component" prereqs="xdoclet:updateCompilationPath,ejb:install"> --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/xdoclet/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira ------------------------------------------------------- This SF.NET email is sponsored by: Geek Gift Procrastinating? Get the perfect geek gift now! Before the Holidays pass you by. T H I N K G E E K . C O M http://www.thinkgeek.com/sf/ _______________________________________________ Xdoclet-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-devel
