maven-plugins/maven.xml
2006-03-30 22:57:10 +00:00

41 lines
2.4 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="Install all plugins">
<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-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 all 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>
</project>