You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ji...@codehaus.org on 2003/10/18 22:54:04 UTC

[jira] Created: (MAVEN-948) Genapp to prompt for project root

Message:

  A new issue has been created in JIRA.

---------------------------------------------------------------------
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-948


Here is an overview of the issue:
---------------------------------------------------------------------
        Key: MAVEN-948
    Summary: Genapp to prompt for project root
       Type: Improvement

     Status: Unassigned
   Priority: Trivial

 Time Spent: Unknown
  Remaining: 3 hours

    Project: maven
 Components: 
             plugin-genapp
   Versions:
             1.0-rc2

   Assignee: 
   Reporter: Sri Sankaran

    Created: Sat, 18 Oct 2003 3:53 PM
    Updated: Sat, 18 Oct 2003 3:53 PM
Environment: All

Description:
Currently, the genapp plugin assumes that ${basedir} is to be the top-level of the project being 'gen'ed.  The user doesn't realize that the plugin is going to write a bunch of files/directories to the current directory until *after* running it.

It would be nice if we could prompt for a location.  I have tested that with simple code modifications to plugin.jelly & plugin.properties

plugin.jelly:
Step 1
Replace all occurences of ${basedir} with ${projectRoot}.

Step 2
Add the following lines at line 92

<!-- Get the project root -->
<j:set var="projectRoot" value="${maven.genapp.projectRoot}"/>
<j:if test="${empty(projectRoot)}">
  <i:ask question="${maven.genapp.prompt.projectRoot}" 
           answer="projectRoot"   
          default="${basedir}/${maven.genapp.template.name}"/>
</j:if>

plugin.properties:
Added the property setting

maven.genapp.prompt.projectRoot=Please specify the project root directory:

I can provide the modified files -- and related changes to properties.xml -- if you wish.


---------------------------------------------------------------------
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org