maven-plugins/maven.xml
2006-07-17 20:34:22 +00:00

47 lines
3.1 KiB
XML

<!--
/*
* Copyright 2001-2006 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<project xmlns:maven="jelly:maven">
<goal name="plugins:install-all" description="Clean, build and install each Maven plugin into the running Maven installation">
<maven:reactor basedir="${basedir}" includes="${maven.build.plugins.includes}" excludes="${maven.build.plugins.excludes}" goals="clean,plugin:install" banner="Install" ignoreFailures="false"/>
</goal>
<goal name="plugins:repository-install-all" description="Install all plugins in the local repository">
<maven:reactor basedir="${basedir}" includes="${maven.build.plugins.includes}" excludes="${maven.build.plugins.excludes}" goals="clean,plugin:repository-install" banner="Deploy" ignoreFailures="false"/>
</goal>
<goal name="plugins:repository-deploy-all" description="Deploy all plugins in a remote repository">
<maven:reactor basedir="${basedir}" includes="${maven.build.plugins.includes}" excludes="${maven.build.plugins.excludes}" goals="clean,plugin:repository-deploy" banner="Deploy" ignoreFailures="false"/>
</goal>
<goal name="plugins:test-all" description="Test each Maven plugin. This runs any integration tests available for individual plugins.">
<maven:reactor basedir="${basedir}" includes="${maven.build.plugins.includes}" excludes="${maven.build.plugins.excludes}" goals="plugin:test" banner="Test" ignoreFailures="false"/>
</goal>
<goal name="plugins:site" description="Create the web site root for all plugins">
<maven:maven descriptor="${basedir}/plugins-site/project.xml" goals="multiproject:site" ignoreFailures="false"/>
</goal>
<goal name="plugins:build-all-sites" description="Create the web site for all plugins and for the root site">
<maven:maven descriptor="${basedir}/plugins-site/project.xml" goals="plugins:build-all-sites" ignoreFailures="false"/>
</goal>
<goal name="plugins:deploy-all-sites" description="Deploy the web site for all plugins and for the root site">
<maven:maven descriptor="${basedir}/plugins-site/project.xml" goals="plugins:deploy-all-sites" ignoreFailures="false"/>
</goal>
<goal name="plugins:publish-all-sites" description="Publish the web site for all plugins and for the root site">
<maven:maven descriptor="${basedir}/plugins-site/project.xml" goals="plugins:publish-all-sites" ignoreFailures="false"/>
</goal>
<goal name="plugins:eclipse" description="Generates eclipse settings for each project.">
<maven:reactor basedir="${basedir}" includes="*/project.xml" goals="eclipse" banner="Generates Eclipse Settings for " ignoreFailures="true"/>
</goal>
</project>