Message: A new issue has been created in JIRA.
--------------------------------------------------------------------- View the issue: http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPSTATCVS-9 Here is an overview of the issue: --------------------------------------------------------------------- Key: MPSTATCVS-9 Summary: Support for VIEWCVS, CVSWEB, and CHLORA command line options Type: Improvement Status: Unassigned Priority: Trivial Original Estimate: Unknown Time Spent: Unknown Remaining: Unknown Project: maven-statcvs-plugin Assignee: Reporter: Timothy Mulle Created: Wed, 25 Feb 2004 3:34 PM Updated: Wed, 25 Feb 2004 3:34 PM Environment: ALL Description: I noticed that the statcvs application takes the -viewcvs, -chlora, and -cvsweb commandline parameters to define the URL for cvs browsing. But the maven plugin doesn't support these options. So, I added the following lines in my plugin.jelly for the plugin and defined a "maven.statcvs.viewcvs.url" property in my build.properties file. This way you can now specify one of the three parameters to define the URL for cvs browsing. <ant:arg line="-weburl ${pom.repository.url}"/> << CHANGES>> <!-- Check to see which cvs repository viewer url was specified and set the commandline arg --> <j:if test="${context.getVariable('maven.statcvs.viewcvs.url') != null}"> <ant:echo>Using viewcvs at ${maven.statcvs.viewcvs.url}</ant:echo> <ant:arg line="-viewcvs ${maven.statcvs.viewcvs.url}"/> </j:if> <j:if test="${context.getVariable('maven.statcvs.cvsweb.url') != null}"> <ant:echo>Using cvsweb at ${maven.statcvs.cvsweb.url}</ant:echo> <ant:arg line="-cvsweb ${maven.statcvs.cvsweb.url}"/> </j:if> <j:if test="${context.getVariable('maven.statcvs.chlora.url') != null}"> <ant:echo>Using chlora at ${maven.statcvs.chlora.url}</ant:echo> <ant:arg line="-chlora ${maven.statcvs.chlora.url}"/> </j:if> I didn't know where to check in the changes or if this has already been addressed. Thought you might find it useful. --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
