add missing root tag

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@233172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-08-17 13:33:15 +00:00
parent a21b79dfb0
commit d1a98347dd
1 changed files with 21 additions and 19 deletions

View File

@ -242,25 +242,27 @@ m2 clean:clean install
set of phases for the Plexus plugin itself to register the <<<plexus-application>>> type: set of phases for the Plexus plugin itself to register the <<<plexus-application>>> type:
---- ----
<components> <component-set>
<component> <components>
<role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role> <component>
<role-hint>plexus-application</role-hint> <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
<implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation> <role-hint>plexus-application</role-hint>
<configuration> <implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
<phases> <configuration>
<process-resources>resources:resources</process-resources> <phases>
<compile>compiler:compile</compile> <process-resources>resources:resources</process-resources>
<process-test-resources>resources:testResources</process-test-resources> <compile>compiler:compile</compile>
<test-compile>compiler:testCompile</test-compile> <process-test-resources>resources:testResources</process-test-resources>
<test>surefire:test</test> <test-compile>compiler:testCompile</test-compile>
<package>plexus:app</package> <test>surefire:test</test>
<install>install:install</install> <package>plexus:app</package>
<deploy>deploy:deploy</deploy> <install>install:install</install>
</phases> <deploy>deploy:deploy</deploy>
</configuration> </phases>
</component> </configuration>
</components> </component>
</components>
</component-set>
---- ----
In this example, the <<<role-hint>>> is used to specify the packaging, and the <<<role>>> of In this example, the <<<role-hint>>> is used to specify the packaging, and the <<<role>>> of