Enhance projects generated by andromdapp with convenience goals and tests
-------------------------------------------------------------------------

         Key: MAVEN-25
         URL: http://thecla.homeftp.net:8380/jira/browse/MAVEN-25
     Project: Maven Plugins
        Type: New Feature
  Components: APP  
 Environment: all
    Reporter: Thomas Schapitz
 Assigned to: Chad Brandon 
    Priority: Minor


Getting an andromda generated app to be unit tested, currently involves a three 
step action:

 - install
 - deploy
 - test

enhancing the generated maven.xml with the following goal:

    <!-- ==================================================================
           Does everything from generation and deployment to test execution
         ================================================================== -->
    <goal name="CompileAndGo" 
          description="Does everything from generation and deployment to test 
execution">
        <attainGoal name="multiproject:install"/>
        <attainGoal name="deploy"/>
        <!-- to make sure, that deployment is done, when test are starting,
             we simply wait some time -->
        <util:sleep millis="15000"/>
        <maven:maven
            descriptor="${maven.src.dir}/../app/project.xml"
            goals="test:test"/>
    </goal>

... or similar could improve the turnaround time for the developers.
In order for the specific solution to work, unit to include the 
jelly util package into the project descriptor:

<project default="....
         xmlns:util="jelly:util">

and add the tests into app/project.xml




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://thecla.homeftp.net:8380/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Andromda-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/andromda-devel

Reply via email to