Modified: websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/examples/ignoring-errors.html ============================================================================== --- websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/examples/ignoring-errors.html (original) +++ websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/examples/ignoring-errors.html Mon Sep 22 06:49:35 2014 @@ -1,186 +1,206 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- - | Generated by Apache Maven Doxia at Jan 2, 2013 - | Rendered using Apache Maven Stylus Skin 1.5 ---> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>Ignoring Clean Errors</title> - <style type="text/css" media="all"> - @import url("../css/maven-base.css"); - @import url("../css/maven-theme.css"); - @import url("../css/site.css"); - </style> - <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" /> - <meta name="author" content="Vincent Siveton" /> - <meta name="Date-Revision-yyyymmdd" content="20130102" /> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - -<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> - -<script type="text/javascript">_uacct = "UA-140879-1"; - urchinTracker();</script> - </head> - <body class="composite"> - <div id="banner"> - <a href="../../../" id="bannerLeft"> - <img src="../../../images/apache-maven-project-2.png" alt="" /> - </a> - <span id="bannerRight"> - <img src="../../../images/maven-logo-2.gif" alt="" /> - </span> - <div class="clear"> - <hr/> - </div> - </div> - <div id="breadcrumbs"> - - <div class="xleft"> - <a href="http://www.apache.org/" class="externalLink">Apache</a> - > - <a href="../../../index.html">Maven</a> - > - <a href="../../index.html">Plugins</a> - > - <a href="../">Maven Clean plugin</a> - > - Ignoring Clean Errors - </div> - <div class="xright"> - Last Published: 2012-06-15 - | Version: 2.5 - </div> - <div class="clear"> - <hr/> - </div> - </div> - <div id="leftColumn"> - <div id="navcolumn"> - - <h5>Overview</h5> - <ul> - <li class="none"> - <a href="../index.html">Introduction</a> - </li> - <li class="none"> - <a href="../plugin-info.html">Goals</a> - </li> - <li class="none"> - <a href="../usage.html">Usage</a> - </li> - <li class="none"> - <a href="../faq.html">FAQ</a> - </li> - </ul> - <h5>Examples</h5> - <ul> - <li class="none"> - <a href="../examples/delete_additional_files.html">Delete Additional Files</a> - </li> - <li class="none"> - <a href="../examples/skipping-clean.html">Skipping Clean</a> - </li> - <li class="none"> - <strong>Ignoring Errors</strong> - </li> - </ul> - <h5>Project Documentation</h5> - <ul> - <li class="collapsed"> - <a href="../project-info.html">Project Information</a> - </li> - <li class="collapsed"> - <a href="../project-reports.html">Project Reports</a> - </li> - </ul> - <h5>Maven Projects</h5> - <ul> - <li class="none"> - <a href="../../../ant-tasks/index.html">Ant Tasks</a> - </li> - <li class="none"> - <a href="../../../archetype/index.html">Archetype</a> - </li> - <li class="none"> - <a href="../../../doxia/index.html">Doxia</a> - </li> - <li class="none"> - <a href="../../../jxr/index.html">JXR</a> - </li> - <li class="none"> - <a href="../../../maven-1.x/index.html">Maven 1.x</a> - </li> - <li class="none"> - <a href="../../../index.html">Maven 2 & 3</a> - </li> - <li class="none"> - <a href="../../index.html">Plugins</a> - </li> - <li class="none"> - <a href="../../../scm/index.html">SCM</a> - </li> - <li class="none"> - <a href="../../../shared/index.html">Shared Components</a> - </li> - <li class="none"> - <a href="../../../surefire/index.html">Surefire</a> - </li> - <li class="none"> - <a href="../../../wagon/index.html">Wagon</a> - </li> - </ul> - <h5>ASF</h5> - <ul> - <li class="none"> - <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> - </li> - </ul> - <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> - <img alt="Built by Maven" src="../images/logos/maven-feather.png"/> - </a> - - </div> - </div> - <div id="bodyColumn"> - <div id="contentBox"> - <!-- Licensed to the Apache Software Foundation (ASF) under one --><!-- or more contributor license agreements. See the NOTICE file --><!-- distributed with this work for additional information --><!-- regarding copyright ownership. The ASF licenses this file --><!-- to you 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. --><!-- NOTE: For help with the syntax of this file, see: --><!-- http://maven.apache.org/doxia/references/apt- format.html --><div class="section"><h2>Ignoring Clean Errors<a name="Ignoring_Clean_Errors"></a></h2><p>To ignore errors when running the cleanup for a particular project, set the <tt>failOnError</tt> property to <tt>false</tt>.</p><div class="source"><pre><build> - [...] - <plugin> - <artifactId>maven-clean-plugin</artifactId> - <version>2.5</version> - <configuration> - <failOnError>false</failOnError> - </configuration> - </plugin> - [...] -</build> -</pre></div><p>You can also ignore them via command line by executing the following command:</p><div class="source"><pre>mvn clean -Dmaven.clean.failOnError=false -</pre></div></div> - </div> - </div> - <div class="clear"> - <hr/> - </div> - <div id="footer"> - <div class="xright"> - © 2001-2013 - The Apache Software Foundation - - - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. - Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. - </div> - <div class="clear"> - <hr/> - </div> - </div> - </body> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!-- + | Generated by Apache Maven Doxia at 2014-09-22 + | Rendered using Apache Maven Stylus Skin 1.5 +--> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache Maven Clean Plugin - Ignoring Clean Errors</title> + <style type="text/css" media="all"> + @import url("../css/maven-base.css"); + @import url("../css/maven-theme.css"); + @import url("../css/site.css"); + </style> + <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" /> + <meta name="author" content="Vincent Siveton" /> + <meta name="Date-Revision-yyyymmdd" content="20140922" /> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="../../../" id="bannerLeft"> + <img src="../../../images/apache-maven-project-2.png" alt="" /> + </a> + <span id="bannerRight"> + <img src="../../../images/maven-logo-2.gif" alt="" /> + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + <div class="xleft"> + <a href="http://www.apache.org/" class="externalLink">Apache</a> + > + <a href="../../../index.html">Maven</a> + > + <a href="../../index.html">Plugins</a> + > + <a href="../">Apache Maven Clean Plugin</a> + > + Ignoring Clean Errors + </div> + <div class="xright"> + Last Published: 2014-09-22 + | Version: 2.6 + </div> + <div class="clear"> + <hr/> + </div> + </div> + <div id="leftColumn"> + <div id="navcolumn"> + + <h5>Overview</h5> + <ul> + <li class="none"> + <a href="../index.html">Introduction</a> + </li> + <li class="none"> + <a href="../plugin-info.html">Goals</a> + </li> + <li class="none"> + <a href="../usage.html">Usage</a> + </li> + <li class="none"> + <a href="../faq.html">FAQ</a> + </li> + <li class="none"> + <a href="http://www.apache.org/licenses/" class="externalLink">License</a> + </li> + <li class="none"> + <a href="../download.html">Download</a> + </li> + </ul> + <h5>Examples</h5> + <ul> + <li class="none"> + <a href="../examples/delete_additional_files.html">Delete Additional Files</a> + </li> + <li class="none"> + <a href="../examples/skipping-clean.html">Skipping Clean</a> + </li> + <li class="none"> + <strong>Ignoring Errors</strong> + </li> + </ul> + <h5>Project Documentation</h5> + <ul> + <li class="collapsed"> + <a href="../project-info.html">Project Information</a> + </li> + <li class="collapsed"> + <a href="../project-reports.html">Project Reports</a> + </li> + </ul> + <h5>Maven Projects</h5> + <ul> + <li class="none"> + <a href="../../../ant-tasks/index.html">Ant Tasks</a> + </li> + <li class="none"> + <a href="../../../archetype/index.html">Archetype</a> + </li> + <li class="none"> + <a href="../../../doxia/index.html">Doxia</a> + </li> + <li class="none"> + <a href="../../../jxr/index.html">JXR</a> + </li> + <li class="none"> + <a href="../../../maven-1.x/index.html">Maven 1.x</a> + </li> + <li class="none"> + <a href="../../../index.html">Maven 2 & 3</a> + </li> + <li class="none"> + <a href="../../../pom/index.html">Parent POMs</a> + </li> + <li class="none"> + <a href="../../index.html">Plugins</a> + </li> + <li class="none"> + <a href="../../../plugin-tools/index.html">Plugin Tools</a> + </li> + <li class="none"> + <a href="../../../scm/index.html">SCM</a> + </li> + <li class="none"> + <a href="../../../shared/index.html">Shared Components</a> + </li> + <li class="none"> + <a href="../../../skins/index.html">Skins</a> + </li> + <li class="none"> + <a href="../../../surefire/index.html">Surefire</a> + </li> + <li class="none"> + <a href="../../../wagon/index.html">Wagon</a> + </li> + </ul> + <h5>ASF</h5> + <ul> + <li class="none"> + <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> + </li> + </ul> + <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> + <img alt="Built by Maven" src="../images/logos/maven-feather.png"/> + </a> + + </div> + </div> + <div id="bodyColumn"> + <div id="contentBox"> + <!-- Licensed to the Apache Software Foundation (ASF) under one --><!-- or more contributor license agreements. See the NOTICE file --><!-- distributed with this work for additional information --><!-- regarding copyright ownership. The ASF licenses this file --><!-- to you 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. --><!-- NOTE: For help with the syntax of this file, see: --><!-- http://maven.apache.org/doxia/references/apt- format.html --><div class="section"> +<h2>Ignoring Clean Errors<a name="Ignoring_Clean_Errors"></a></h2> +<p>To ignore errors when running the cleanup for a particular project, set the <tt>failOnError</tt> property to <tt>false</tt>.</p> +<div class="source"> +<pre><build> + [...] + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>2.6</version> + <configuration> + <failOnError>false</failOnError> + </configuration> + </plugin> + [...] +</build></pre></div> +<p>You can also ignore them via command line by executing the following command:</p> +<div class="source"> +<pre>mvn clean -Dmaven.clean.failOnError=false</pre></div></div> + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright"> + © 2001-2014 + The Apache Software Foundation + + - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. + Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> </html> \ No newline at end of file
Modified: websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/examples/skipping-clean.html ============================================================================== --- websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/examples/skipping-clean.html (original) +++ websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/examples/skipping-clean.html Mon Sep 22 06:49:35 2014 @@ -1,186 +1,206 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- - | Generated by Apache Maven Doxia at Jan 2, 2013 - | Rendered using Apache Maven Stylus Skin 1.5 ---> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>Skipping Clean</title> - <style type="text/css" media="all"> - @import url("../css/maven-base.css"); - @import url("../css/maven-theme.css"); - @import url("../css/site.css"); - </style> - <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" /> - <meta name="author" content="Vincent Siveton" /> - <meta name="Date-Revision-yyyymmdd" content="20130102" /> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - -<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> - -<script type="text/javascript">_uacct = "UA-140879-1"; - urchinTracker();</script> - </head> - <body class="composite"> - <div id="banner"> - <a href="../../../" id="bannerLeft"> - <img src="../../../images/apache-maven-project-2.png" alt="" /> - </a> - <span id="bannerRight"> - <img src="../../../images/maven-logo-2.gif" alt="" /> - </span> - <div class="clear"> - <hr/> - </div> - </div> - <div id="breadcrumbs"> - - <div class="xleft"> - <a href="http://www.apache.org/" class="externalLink">Apache</a> - > - <a href="../../../index.html">Maven</a> - > - <a href="../../index.html">Plugins</a> - > - <a href="../">Maven Clean plugin</a> - > - Skipping Clean - </div> - <div class="xright"> - Last Published: 2012-06-15 - | Version: 2.5 - </div> - <div class="clear"> - <hr/> - </div> - </div> - <div id="leftColumn"> - <div id="navcolumn"> - - <h5>Overview</h5> - <ul> - <li class="none"> - <a href="../index.html">Introduction</a> - </li> - <li class="none"> - <a href="../plugin-info.html">Goals</a> - </li> - <li class="none"> - <a href="../usage.html">Usage</a> - </li> - <li class="none"> - <a href="../faq.html">FAQ</a> - </li> - </ul> - <h5>Examples</h5> - <ul> - <li class="none"> - <a href="../examples/delete_additional_files.html">Delete Additional Files</a> - </li> - <li class="none"> - <strong>Skipping Clean</strong> - </li> - <li class="none"> - <a href="../examples/ignoring-errors.html">Ignoring Errors</a> - </li> - </ul> - <h5>Project Documentation</h5> - <ul> - <li class="collapsed"> - <a href="../project-info.html">Project Information</a> - </li> - <li class="collapsed"> - <a href="../project-reports.html">Project Reports</a> - </li> - </ul> - <h5>Maven Projects</h5> - <ul> - <li class="none"> - <a href="../../../ant-tasks/index.html">Ant Tasks</a> - </li> - <li class="none"> - <a href="../../../archetype/index.html">Archetype</a> - </li> - <li class="none"> - <a href="../../../doxia/index.html">Doxia</a> - </li> - <li class="none"> - <a href="../../../jxr/index.html">JXR</a> - </li> - <li class="none"> - <a href="../../../maven-1.x/index.html">Maven 1.x</a> - </li> - <li class="none"> - <a href="../../../index.html">Maven 2 & 3</a> - </li> - <li class="none"> - <a href="../../index.html">Plugins</a> - </li> - <li class="none"> - <a href="../../../scm/index.html">SCM</a> - </li> - <li class="none"> - <a href="../../../shared/index.html">Shared Components</a> - </li> - <li class="none"> - <a href="../../../surefire/index.html">Surefire</a> - </li> - <li class="none"> - <a href="../../../wagon/index.html">Wagon</a> - </li> - </ul> - <h5>ASF</h5> - <ul> - <li class="none"> - <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> - </li> - </ul> - <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> - <img alt="Built by Maven" src="../images/logos/maven-feather.png"/> - </a> - - </div> - </div> - <div id="bodyColumn"> - <div id="contentBox"> - <!-- Licensed to the Apache Software Foundation (ASF) under one --><!-- or more contributor license agreements. See the NOTICE file --><!-- distributed with this work for additional information --><!-- regarding copyright ownership. The ASF licenses this file --><!-- to you 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. --><!-- NOTE: For help with the syntax of this file, see: --><!-- http://maven.apache.org/doxia/references/apt- format.html --><div class="section"><h2>Skipping Clean<a name="Skipping_Clean"></a></h2><p>To skip running the cleanup for a particular project, set the <tt>skip</tt> property to <tt>true</tt>.</p><div class="source"><pre><build> - [...] - <plugin> - <artifactId>maven-clean-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - [...] -</build> -</pre></div><p>You can also skip the cleaning via command line by executing the following command:</p><div class="source"><pre>mvn clean -Dclean.skip=true -</pre></div></div> - </div> - </div> - <div class="clear"> - <hr/> - </div> - <div id="footer"> - <div class="xright"> - © 2001-2013 - The Apache Software Foundation - - - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. - Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. - </div> - <div class="clear"> - <hr/> - </div> - </div> - </body> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!-- + | Generated by Apache Maven Doxia at 2014-09-22 + | Rendered using Apache Maven Stylus Skin 1.5 +--> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache Maven Clean Plugin - Skipping Clean</title> + <style type="text/css" media="all"> + @import url("../css/maven-base.css"); + @import url("../css/maven-theme.css"); + @import url("../css/site.css"); + </style> + <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" /> + <meta name="author" content="Vincent Siveton" /> + <meta name="Date-Revision-yyyymmdd" content="20140922" /> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="../../../" id="bannerLeft"> + <img src="../../../images/apache-maven-project-2.png" alt="" /> + </a> + <span id="bannerRight"> + <img src="../../../images/maven-logo-2.gif" alt="" /> + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + <div class="xleft"> + <a href="http://www.apache.org/" class="externalLink">Apache</a> + > + <a href="../../../index.html">Maven</a> + > + <a href="../../index.html">Plugins</a> + > + <a href="../">Apache Maven Clean Plugin</a> + > + Skipping Clean + </div> + <div class="xright"> + Last Published: 2014-09-22 + | Version: 2.6 + </div> + <div class="clear"> + <hr/> + </div> + </div> + <div id="leftColumn"> + <div id="navcolumn"> + + <h5>Overview</h5> + <ul> + <li class="none"> + <a href="../index.html">Introduction</a> + </li> + <li class="none"> + <a href="../plugin-info.html">Goals</a> + </li> + <li class="none"> + <a href="../usage.html">Usage</a> + </li> + <li class="none"> + <a href="../faq.html">FAQ</a> + </li> + <li class="none"> + <a href="http://www.apache.org/licenses/" class="externalLink">License</a> + </li> + <li class="none"> + <a href="../download.html">Download</a> + </li> + </ul> + <h5>Examples</h5> + <ul> + <li class="none"> + <a href="../examples/delete_additional_files.html">Delete Additional Files</a> + </li> + <li class="none"> + <strong>Skipping Clean</strong> + </li> + <li class="none"> + <a href="../examples/ignoring-errors.html">Ignoring Errors</a> + </li> + </ul> + <h5>Project Documentation</h5> + <ul> + <li class="collapsed"> + <a href="../project-info.html">Project Information</a> + </li> + <li class="collapsed"> + <a href="../project-reports.html">Project Reports</a> + </li> + </ul> + <h5>Maven Projects</h5> + <ul> + <li class="none"> + <a href="../../../ant-tasks/index.html">Ant Tasks</a> + </li> + <li class="none"> + <a href="../../../archetype/index.html">Archetype</a> + </li> + <li class="none"> + <a href="../../../doxia/index.html">Doxia</a> + </li> + <li class="none"> + <a href="../../../jxr/index.html">JXR</a> + </li> + <li class="none"> + <a href="../../../maven-1.x/index.html">Maven 1.x</a> + </li> + <li class="none"> + <a href="../../../index.html">Maven 2 & 3</a> + </li> + <li class="none"> + <a href="../../../pom/index.html">Parent POMs</a> + </li> + <li class="none"> + <a href="../../index.html">Plugins</a> + </li> + <li class="none"> + <a href="../../../plugin-tools/index.html">Plugin Tools</a> + </li> + <li class="none"> + <a href="../../../scm/index.html">SCM</a> + </li> + <li class="none"> + <a href="../../../shared/index.html">Shared Components</a> + </li> + <li class="none"> + <a href="../../../skins/index.html">Skins</a> + </li> + <li class="none"> + <a href="../../../surefire/index.html">Surefire</a> + </li> + <li class="none"> + <a href="../../../wagon/index.html">Wagon</a> + </li> + </ul> + <h5>ASF</h5> + <ul> + <li class="none"> + <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> + </li> + </ul> + <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> + <img alt="Built by Maven" src="../images/logos/maven-feather.png"/> + </a> + + </div> + </div> + <div id="bodyColumn"> + <div id="contentBox"> + <!-- Licensed to the Apache Software Foundation (ASF) under one --><!-- or more contributor license agreements. See the NOTICE file --><!-- distributed with this work for additional information --><!-- regarding copyright ownership. The ASF licenses this file --><!-- to you 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. --><!-- NOTE: For help with the syntax of this file, see: --><!-- http://maven.apache.org/doxia/references/apt- format.html --><div class="section"> +<h2>Skipping Clean<a name="Skipping_Clean"></a></h2> +<p>To skip running the cleanup for a particular project, set the <tt>skip</tt> property to <tt>true</tt>.</p> +<div class="source"> +<pre><build> + [...] + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>2.6</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + [...] +</build></pre></div> +<p>You can also skip the cleaning via command line by executing the following command:</p> +<div class="source"> +<pre>mvn clean -Dclean.skip=true</pre></div></div> + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright"> + © 2001-2014 + The Apache Software Foundation + + - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. + Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> </html> \ No newline at end of file Modified: websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/faq.html ============================================================================== --- websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/faq.html (original) +++ websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/faq.html Mon Sep 22 06:49:35 2014 @@ -1,211 +1,240 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- - | Generated by Apache Maven Doxia at Jan 2, 2013 - | Rendered using Apache Maven Stylus Skin 1.5 ---> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>Frequently Asked Questions</title> - <style type="text/css" media="all"> - @import url("./css/maven-base.css"); - @import url("./css/maven-theme.css"); - @import url("./css/site.css"); - </style> - <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20130102" /> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - -<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> - -<script type="text/javascript">_uacct = "UA-140879-1"; - urchinTracker();</script> - </head> - <body class="composite"> - <div id="banner"> - <a href="../../" id="bannerLeft"> - <img src="../../images/apache-maven-project-2.png" alt="" /> - </a> - <span id="bannerRight"> - <img src="../../images/maven-logo-2.gif" alt="" /> - </span> - <div class="clear"> - <hr/> - </div> - </div> - <div id="breadcrumbs"> - - <div class="xleft"> - <a href="http://www.apache.org/" class="externalLink">Apache</a> - > - <a href="../../index.html">Maven</a> - > - <a href="../index.html">Plugins</a> - > - <a href="./">Maven Clean plugin</a> - > - Frequently Asked Questions - </div> - <div class="xright"> - Last Published: 2012-06-15 - | Version: 2.5 - </div> - <div class="clear"> - <hr/> - </div> - </div> - <div id="leftColumn"> - <div id="navcolumn"> - - <h5>Overview</h5> - <ul> - <li class="none"> - <a href="index.html">Introduction</a> - </li> - <li class="none"> - <a href="plugin-info.html">Goals</a> - </li> - <li class="none"> - <a href="usage.html">Usage</a> - </li> - <li class="none"> - <strong>FAQ</strong> - </li> - </ul> - <h5>Examples</h5> - <ul> - <li class="none"> - <a href="examples/delete_additional_files.html">Delete Additional Files</a> - </li> - <li class="none"> - <a href="examples/skipping-clean.html">Skipping Clean</a> - </li> - <li class="none"> - <a href="examples/ignoring-errors.html">Ignoring Errors</a> - </li> - </ul> - <h5>Project Documentation</h5> - <ul> - <li class="collapsed"> - <a href="project-info.html">Project Information</a> - </li> - <li class="collapsed"> - <a href="project-reports.html">Project Reports</a> - </li> - </ul> - <h5>Maven Projects</h5> - <ul> - <li class="none"> - <a href="../../ant-tasks/index.html">Ant Tasks</a> - </li> - <li class="none"> - <a href="../../archetype/index.html">Archetype</a> - </li> - <li class="none"> - <a href="../../doxia/index.html">Doxia</a> - </li> - <li class="none"> - <a href="../../jxr/index.html">JXR</a> - </li> - <li class="none"> - <a href="../../maven-1.x/index.html">Maven 1.x</a> - </li> - <li class="none"> - <a href="../../index.html">Maven 2 & 3</a> - </li> - <li class="none"> - <a href="../index.html">Plugins</a> - </li> - <li class="none"> - <a href="../../scm/index.html">SCM</a> - </li> - <li class="none"> - <a href="../../shared/index.html">Shared Components</a> - </li> - <li class="none"> - <a href="../../surefire/index.html">Surefire</a> - </li> - <li class="none"> - <a href="../../wagon/index.html">Wagon</a> - </li> - </ul> - <h5>ASF</h5> - <ul> - <li class="none"> - <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> - </li> - </ul> - <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> - <img alt="Built by Maven" src="./images/logos/maven-feather.png"/> - </a> - - </div> - </div> - <div id="bodyColumn"> - <div id="contentBox"> - <!-- Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you 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. --><div class="section"><h2><a name="top">Frequently Asked Questions</a><a name="Frequently_Asked_Questions"></a></h2><ol style="list-style-type: decimal"><li><a href="#I_already_ran_mvn_clean_but_the_directory_put_dir_name_here_is_still_there._What_should_I_do">I already ran <i>mvn clean</i> but the directory (<i>put dir name here</i>) is still there. What should I do?</a></li><li><a href="#On_Windows_I_got_Unable_to_delete_directory._What_s_wrong">On Windows, I got <i>"Unable to delete directory"</i>. What's wrong?</a></li></ol></div><dl><dt><a name="I_already_ran_mvn_clean_but_the_directory_put_dir_name_here_is_still_there._What_should_I_do">I already ran <i>mvn clean</i> but the directory (<i>put dir name here</i>) is still there. What should I do?</a></dt><dd> - <p> - Some files-generating plugins can generate their files outside of the - default directories being deleted by the clean plugin. You should add - the location of such files in the clean plugin configuration or change - the configuration of those plugins to put their files inside the - <i>project.build.directory</i> which is by default, the <i>target</i> - directory. - </p> - <p align="right"><a href="#top">[top]</a></p><hr /></dd><dt><a name="On_Windows_I_got_Unable_to_delete_directory._What_s_wrong">On Windows, I got <i>"Unable to delete directory"</i>. What's wrong?</a></dt><dd> - <p> - For instance, <i>clean</i> could fail if you already have opened a command - line with target as the current dir. Windows locks some ressources and you need - to close the handles on these ressources. - To skip these errors, you could call <i>clean</i> with the command line parameter <i>-Dmaven.clean.failOnError=false</i>. - For more information, refer to <a href="./examples/ignoring-errors.html">Ignoring Errors</a> page. - </p> - <p> - <a class="externalLink" href="http://www.microsoft.com/technet/sysinternals/default.mspx">Sysinternals</a> produced - a number of utilities, like <a class="externalLink" href="http://www.microsoft.com/technet/sysinternals/Utilities/ProcessExplorer.mspx">Process Explorer</a> - or <a class="externalLink" href="http://www.microsoft.com/technet/sysinternals/utilities/handle.mspx">Handle</a> - that help you to deal with Windows handles. - </p> - <p align="right"><a href="#top">[top]</a></p></dd></dl> - </div> - </div> - <div class="clear"> - <hr/> - </div> - <div id="footer"> - <div class="xright"> - © 2001-2013 - The Apache Software Foundation - - - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. - Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. - </div> - <div class="clear"> - <hr/> - </div> - </div> - </body> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!-- + | Generated by Apache Maven Doxia at 2014-09-22 + | Rendered using Apache Maven Stylus Skin 1.5 +--> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache Maven Clean Plugin - Frequently Asked Questions</title> + <style type="text/css" media="all"> + @import url("./css/maven-base.css"); + @import url("./css/maven-theme.css"); + @import url("./css/site.css"); + </style> + <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> + <meta name="Date-Revision-yyyymmdd" content="20140922" /> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="../../" id="bannerLeft"> + <img src="../../images/apache-maven-project-2.png" alt="" /> + </a> + <span id="bannerRight"> + <img src="../../images/maven-logo-2.gif" alt="" /> + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + <div class="xleft"> + <a href="http://www.apache.org/" class="externalLink">Apache</a> + > + <a href="../../index.html">Maven</a> + > + <a href="../index.html">Plugins</a> + > + <a href="./">Apache Maven Clean Plugin</a> + > + Frequently Asked Questions + </div> + <div class="xright"> + Last Published: 2014-09-22 + | Version: 2.6 + </div> + <div class="clear"> + <hr/> + </div> + </div> + <div id="leftColumn"> + <div id="navcolumn"> + + <h5>Overview</h5> + <ul> + <li class="none"> + <a href="index.html">Introduction</a> + </li> + <li class="none"> + <a href="plugin-info.html">Goals</a> + </li> + <li class="none"> + <a href="usage.html">Usage</a> + </li> + <li class="none"> + <strong>FAQ</strong> + </li> + <li class="none"> + <a href="http://www.apache.org/licenses/" class="externalLink">License</a> + </li> + <li class="none"> + <a href="download.html">Download</a> + </li> + </ul> + <h5>Examples</h5> + <ul> + <li class="none"> + <a href="examples/delete_additional_files.html">Delete Additional Files</a> + </li> + <li class="none"> + <a href="examples/skipping-clean.html">Skipping Clean</a> + </li> + <li class="none"> + <a href="examples/ignoring-errors.html">Ignoring Errors</a> + </li> + </ul> + <h5>Project Documentation</h5> + <ul> + <li class="collapsed"> + <a href="project-info.html">Project Information</a> + </li> + <li class="collapsed"> + <a href="project-reports.html">Project Reports</a> + </li> + </ul> + <h5>Maven Projects</h5> + <ul> + <li class="none"> + <a href="../../ant-tasks/index.html">Ant Tasks</a> + </li> + <li class="none"> + <a href="../../archetype/index.html">Archetype</a> + </li> + <li class="none"> + <a href="../../doxia/index.html">Doxia</a> + </li> + <li class="none"> + <a href="../../jxr/index.html">JXR</a> + </li> + <li class="none"> + <a href="../../maven-1.x/index.html">Maven 1.x</a> + </li> + <li class="none"> + <a href="../../index.html">Maven 2 & 3</a> + </li> + <li class="none"> + <a href="../../pom/index.html">Parent POMs</a> + </li> + <li class="none"> + <a href="../index.html">Plugins</a> + </li> + <li class="none"> + <a href="../../plugin-tools/index.html">Plugin Tools</a> + </li> + <li class="none"> + <a href="../../scm/index.html">SCM</a> + </li> + <li class="none"> + <a href="../../shared/index.html">Shared Components</a> + </li> + <li class="none"> + <a href="../../skins/index.html">Skins</a> + </li> + <li class="none"> + <a href="../../surefire/index.html">Surefire</a> + </li> + <li class="none"> + <a href="../../wagon/index.html">Wagon</a> + </li> + </ul> + <h5>ASF</h5> + <ul> + <li class="none"> + <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> + </li> + </ul> + <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> + <img alt="Built by Maven" src="./images/logos/maven-feather.png"/> + </a> + + </div> + </div> + <div id="bodyColumn"> + <div id="contentBox"> + <!-- Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you 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. --><div class="section"> +<h2><a name="top">Frequently Asked Questions</a><a name="Frequently_Asked_Questions"></a></h2> +<ol style="list-style-type: decimal"> +<li><a href="#I_already_ran_mvn_clean_but_the_directory_put_dir_name_here_is_still_there._What_should_I_do">I already ran <i>mvn clean</i> but the directory (<i>put dir name here</i>) is still there. What should I do?</a></li> +<li><a href="#On_Windows_I_got_Unable_to_delete_directory._What_s_wrong">On Windows, I got <i>"Unable to delete directory"</i>. What's wrong?</a></li></ol></div> +<dl> +<dt><a name="I_already_ran_mvn_clean_but_the_directory_put_dir_name_here_is_still_there._What_should_I_do">I already ran <i>mvn clean</i> but the directory (<i>put dir name here</i>) is still there. What should I do?</a></dt> +<dd> + +<p> + Some files-generating plugins can generate their files outside of the + default directories being deleted by the clean plugin. You should add + the location of such files in the clean plugin configuration or change + the configuration of those plugins to put their files inside the + <i>project.build.directory</i> which is by default, the <i>target</i> + directory. + </p> + +<p align="right"><a href="#top">[top]</a></p><hr /></dd> +<dt><a name="On_Windows_I_got_Unable_to_delete_directory._What_s_wrong">On Windows, I got <i>"Unable to delete directory"</i>. What's wrong?</a></dt> +<dd> + +<p> + For instance, <i>clean</i> could fail if you already have opened a command + line with target as the current dir. Windows locks some ressources and you need + to close the handles on these ressources. + To skip these errors, you could call <i>clean</i> with the command line parameter <i>-Dmaven.clean.failOnError=false</i>. + For more information, refer to <a href="./examples/ignoring-errors.html">Ignoring Errors</a> page. + </p> + +<p> + <a class="externalLink" href="http://www.microsoft.com/technet/sysinternals/default.mspx">Sysinternals</a> produced + a number of utilities, like <a class="externalLink" href="http://www.microsoft.com/technet/sysinternals/Utilities/ProcessExplorer.mspx">Process Explorer</a> + or <a class="externalLink" href="http://www.microsoft.com/technet/sysinternals/utilities/handle.mspx">Handle</a> + that help you to deal with Windows handles. + </p> + +<p align="right"><a href="#top">[top]</a></p></dd></dl> + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright"> + © 2001-2014 + The Apache Software Foundation + + - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. + Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> </html> \ No newline at end of file Modified: websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/findbugs.html ============================================================================== --- websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/findbugs.html (original) +++ websites/production/maven/content/plugins-archives/maven-clean-plugin-LATEST/findbugs.html Mon Sep 22 06:49:35 2014 @@ -1,214 +1,286 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- - | Generated by Apache Maven Doxia at Jan 2, 2013 - | Rendered using Apache Maven Stylus Skin 1.5 ---> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>FindBugs Bug Detector Report</title> - <style type="text/css" media="all"> - @import url("./css/maven-base.css"); - @import url("./css/maven-theme.css"); - @import url("./css/site.css"); - </style> - <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20130102" /> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - -<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> - -<script type="text/javascript">_uacct = "UA-140879-1"; - urchinTracker();</script> - </head> - <body class="composite"> - <div id="banner"> - <a href="../../" id="bannerLeft"> - <img src="../../images/apache-maven-project-2.png" alt="" /> - </a> - <span id="bannerRight"> - <img src="../../images/maven-logo-2.gif" alt="" /> - </span> - <div class="clear"> - <hr/> - </div> - </div> - <div id="breadcrumbs"> - - <div class="xleft"> - <a href="http://www.apache.org/" class="externalLink">Apache</a> - > - <a href="../../index.html">Maven</a> - > - <a href="../index.html">Plugins</a> - > - <a href="./">Maven Clean plugin</a> - > - FindBugs Bug Detector Report - </div> - <div class="xright"> - Last Published: 2012-06-15 - | Version: 2.5 - </div> - <div class="clear"> - <hr/> - </div> - </div> - <div id="leftColumn"> - <div id="navcolumn"> - - <h5>Overview</h5> - <ul> - <li class="none"> - <a href="index.html">Introduction</a> - </li> - <li class="none"> - <a href="plugin-info.html">Goals</a> - </li> - <li class="none"> - <a href="usage.html">Usage</a> - </li> - <li class="none"> - <a href="faq.html">FAQ</a> - </li> - </ul> - <h5>Examples</h5> - <ul> - <li class="none"> - <a href="examples/delete_additional_files.html">Delete Additional Files</a> - </li> - <li class="none"> - <a href="examples/skipping-clean.html">Skipping Clean</a> - </li> - <li class="none"> - <a href="examples/ignoring-errors.html">Ignoring Errors</a> - </li> - </ul> - <h5>Project Documentation</h5> - <ul> - <li class="collapsed"> - <a href="project-info.html">Project Information</a> - </li> - <li class="expanded"> - <a href="project-reports.html">Project Reports</a> - <ul> - <li class="none"> - <a href="surefire-report.html">Surefire Report</a> - </li> - <li class="none"> - <a href="checkstyle.html">Checkstyle</a> - </li> - <li class="none"> - <a href="pmd.html">PMD Report</a> - </li> - <li class="none"> - <a href="cpd.html">CPD Report</a> - </li> - <li class="none"> - <a href="cobertura/index.html">Cobertura Test Coverage</a> - </li> - <li class="none"> - <a href="xref-test/index.html">Test Source Xref</a> - </li> - <li class="none"> - <a href="xref/index.html">Source Xref</a> - </li> - <li class="none"> - <a href="taglist.html">Tag List</a> - </li> - <li class="none"> - <a href="apidocs/index.html">JavaDocs</a> - </li> - <li class="none"> - <a href="testapidocs/index.html">Test JavaDocs</a> - </li> - <li class="none"> - <strong>FindBugs Report</strong> - </li> - <li class="none"> - <a href="sonar.html">Sonar</a> - </li> - <li class="none"> - <a href="plugin-info.html">Plugin Documentation</a> - </li> - </ul> - </li> - </ul> - <h5>Maven Projects</h5> - <ul> - <li class="none"> - <a href="../../ant-tasks/index.html">Ant Tasks</a> - </li> - <li class="none"> - <a href="../../archetype/index.html">Archetype</a> - </li> - <li class="none"> - <a href="../../doxia/index.html">Doxia</a> - </li> - <li class="none"> - <a href="../../jxr/index.html">JXR</a> - </li> - <li class="none"> - <a href="../../maven-1.x/index.html">Maven 1.x</a> - </li> - <li class="none"> - <a href="../../index.html">Maven 2 & 3</a> - </li> - <li class="none"> - <a href="../index.html">Plugins</a> - </li> - <li class="none"> - <a href="../../scm/index.html">SCM</a> - </li> - <li class="none"> - <a href="../../shared/index.html">Shared Components</a> - </li> - <li class="none"> - <a href="../../surefire/index.html">Surefire</a> - </li> - <li class="none"> - <a href="../../wagon/index.html">Wagon</a> - </li> - </ul> - <h5>ASF</h5> - <ul> - <li class="none"> - <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> - </li> - <li class="none"> - <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> - </li> - </ul> - <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> - <img alt="Built by Maven" src="./images/logos/maven-feather.png"/> - </a> - - </div> - </div> - <div id="bodyColumn"> - <div id="contentBox"> - <div class="section"><h2>FindBugs Bug Detector Report<a name="FindBugs_Bug_Detector_Report"></a></h2><p>The following document contains the results of <a class="externalLink" href="http://findbugs.sourceforge.net">FindBugs Report</a></p><p>FindBugs Version is <i>1.3.9</i></p><p>Threshold is <i>medium</i></p><p>Effort is <i>min</i></p></div><div class="section"><h2>Summary<a name="Summary"></a></h2><table border="0" class="bodyTable"><tr class="a"><th>Classes</th><th>Bugs</th><th>Errors</th><th>Missing Classes</th></tr><tr class="b"><td>11</td><td>2</td><td>0</td><td>0</td></tr></table></div><div class="section"><h2>Files<a name="Files"></a></h2><table border="0" class="bodyTable"><tr class="a"><th>Class</th><th>Bugs</th></tr><tr class="b"><td><a href="#org.apache.maven.plugin.clean.Cleaner">org.apache.maven.plugin.clean.Cleaner</a></td><td>1</td></tr><tr class="a"><td><a href="#org.apache.maven.plugin.clean.HelpMojo">org.apache.maven.plugin.clean.HelpMojo</a></td><td>1</td>< /tr></table></div><a name="org.apache.maven.plugin.clean.Cleaner"></a><div class="section"><h3>org.apache.maven.plugin.clean.Cleaner<a name="org.apache.maven.plugin.clean.Cleaner"></a></h3><table border="0" class="bodyTable"><tr class="b"><th>Bug</th><th>Category</th><th>Details</th><th>Line</th><th>Priority</th></tr><tr class="a"><td>org.apache.maven.plugin.clean.Cleaner.delete(File, boolean, boolean) forces garbage collection; extremely dubious except in benchmarking code</td><td>PERFORMANCE</td><td><a class="externalLink" href="http://findbugs.sourceforge.net/bugDescriptions.html#DM_GC">DM_GC</a></td><td><a href="./xref/org/apache/maven/plugin/clean/Cleaner.html#223">223</a></td><td>High</td></tr></table></div><a name="org.apache.maven.plugin.clean.HelpMojo"></a><div class="section"><h3>org.apache.maven.plugin.clean.HelpMojo<a name="org.apache.maven.plugin.clean.HelpMojo"></a></h3><table border="0" class="bodyTable"><tr class="b"><th>Bug</th><th>Category</th><th>Details</th><th>L ine</th><th>Priority</th></tr><tr class="a"><td>Unwritten field: org.apache.maven.plugin.clean.HelpMojo.goal</td><td>CORRECTNESS</td><td><a class="externalLink" href="http://findbugs.sourceforge.net/bugDescriptions.html#UWF_UNWRITTEN_FIELD">UWF_UNWRITTEN_FIELD</a></td><td><a href="nullorg/apache/maven/plugin/clean/HelpMojo.html#76">76</a></td><td>Medium</td></tr></table></div> - </div> - </div> - <div class="clear"> - <hr/> - </div> - <div id="footer"> - <div class="xright"> - © 2001-2013 - The Apache Software Foundation - - - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. - Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. - </div> - <div class="clear"> - <hr/> - </div> - </div> - </body> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!-- + | Generated by Apache Maven Doxia at 2014-09-22 + | Rendered using Apache Maven Stylus Skin 1.5 +--> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Apache Maven Clean Plugin - FindBugs Bug Detector Report</title> + <style type="text/css" media="all"> + @import url("./css/maven-base.css"); + @import url("./css/maven-theme.css"); + @import url("./css/site.css"); + </style> + <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> + <meta name="Date-Revision-yyyymmdd" content="20140922" /> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + +<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> + +<script type="text/javascript">_uacct = "UA-140879-1"; + urchinTracker();</script> + </head> + <body class="composite"> + <div id="banner"> + <a href="../../" id="bannerLeft"> + <img src="../../images/apache-maven-project-2.png" alt="" /> + </a> + <span id="bannerRight"> + <img src="../../images/maven-logo-2.gif" alt="" /> + </span> + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + + <div class="xleft"> + <a href="http://www.apache.org/" class="externalLink">Apache</a> + > + <a href="../../index.html">Maven</a> + > + <a href="../index.html">Plugins</a> + > + <a href="./">Apache Maven Clean Plugin</a> + > + FindBugs Bug Detector Report + </div> + <div class="xright"> + Last Published: 2014-09-22 + | Version: 2.6 + </div> + <div class="clear"> + <hr/> + </div> + </div> + <div id="leftColumn"> + <div id="navcolumn"> + + <h5>Overview</h5> + <ul> + <li class="none"> + <a href="index.html">Introduction</a> + </li> + <li class="none"> + <a href="plugin-info.html">Goals</a> + </li> + <li class="none"> + <a href="usage.html">Usage</a> + </li> + <li class="none"> + <a href="faq.html">FAQ</a> + </li> + <li class="none"> + <a href="http://www.apache.org/licenses/" class="externalLink">License</a> + </li> + <li class="none"> + <a href="download.html">Download</a> + </li> + </ul> + <h5>Examples</h5> + <ul> + <li class="none"> + <a href="examples/delete_additional_files.html">Delete Additional Files</a> + </li> + <li class="none"> + <a href="examples/skipping-clean.html">Skipping Clean</a> + </li> + <li class="none"> + <a href="examples/ignoring-errors.html">Ignoring Errors</a> + </li> + </ul> + <h5>Project Documentation</h5> + <ul> + <li class="collapsed"> + <a href="project-info.html">Project Information</a> + </li> + <li class="expanded"> + <a href="project-reports.html">Project Reports</a> + <ul> + <li class="none"> + <a href="surefire-report.html">Surefire Report</a> + </li> + <li class="none"> + <a href="checkstyle.html">Checkstyle</a> + </li> + <li class="none"> + <a href="pmd.html">PMD</a> + </li> + <li class="none"> + <a href="xref/index.html">Source Xref</a> + </li> + <li class="none"> + <a href="xref-test/index.html">Test Source Xref</a> + </li> + <li class="none"> + <a href="taglist.html">Tag List</a> + </li> + <li class="none"> + <a href="apidocs/index.html">JavaDocs</a> + </li> + <li class="none"> + <a href="testapidocs/index.html">Test JavaDocs</a> + </li> + <li class="none"> + <strong>FindBugs Report</strong> + </li> + <li class="none"> + <a href="sonar.html">Sonar</a> + </li> + <li class="none"> + <a href="plugin-info.html">Plugin Documentation</a> + </li> + <li class="none"> + <a href="invoker-report.html">Invoker Build Results</a> + </li> + </ul> + </li> + </ul> + <h5>Maven Projects</h5> + <ul> + <li class="none"> + <a href="../../ant-tasks/index.html">Ant Tasks</a> + </li> + <li class="none"> + <a href="../../archetype/index.html">Archetype</a> + </li> + <li class="none"> + <a href="../../doxia/index.html">Doxia</a> + </li> + <li class="none"> + <a href="../../jxr/index.html">JXR</a> + </li> + <li class="none"> + <a href="../../maven-1.x/index.html">Maven 1.x</a> + </li> + <li class="none"> + <a href="../../index.html">Maven 2 & 3</a> + </li> + <li class="none"> + <a href="../../pom/index.html">Parent POMs</a> + </li> + <li class="none"> + <a href="../index.html">Plugins</a> + </li> + <li class="none"> + <a href="../../plugin-tools/index.html">Plugin Tools</a> + </li> + <li class="none"> + <a href="../../scm/index.html">SCM</a> + </li> + <li class="none"> + <a href="../../shared/index.html">Shared Components</a> + </li> + <li class="none"> + <a href="../../skins/index.html">Skins</a> + </li> + <li class="none"> + <a href="../../surefire/index.html">Surefire</a> + </li> + <li class="none"> + <a href="../../wagon/index.html">Wagon</a> + </li> + </ul> + <h5>ASF</h5> + <ul> + <li class="none"> + <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink">How Apache Works</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/" class="externalLink">Foundation</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsoring Apache</a> + </li> + <li class="none"> + <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a> + </li> + </ul> + <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> + <img alt="Built by Maven" src="./images/logos/maven-feather.png"/> + </a> + + </div> + </div> + <div id="bodyColumn"> + <div id="contentBox"> + <div class="section"> +<h2>FindBugs Bug Detector Report<a name="FindBugs_Bug_Detector_Report"></a></h2> +<p>The following document contains the results of <a class="externalLink" href="http://findbugs.sourceforge.net">FindBugs Report</a></p> +<p>FindBugs Version is <i>2.0.2</i></p> +<p>Threshold is <i>medium</i></p> +<p>Effort is <i>min</i></p></div> +<div class="section"> +<h2>Summary<a name="Summary"></a></h2> +<table border="0" class="bodyTable"> +<tr class="a"> +<th>Classes</th> +<th>Bugs</th> +<th>Errors</th> +<th>Missing Classes</th></tr> +<tr class="b"> +<td>11</td> +<td>2</td> +<td>0</td> +<td>0</td></tr></table></div> +<div class="section"> +<h2>Files<a name="Files"></a></h2> +<table border="0" class="bodyTable"> +<tr class="a"> +<th>Class</th> +<th>Bugs</th></tr> +<tr class="b"> +<td><a href="#org.apache.maven.plugin.clean.Cleaner">org.apache.maven.plugin.clean.Cleaner</a></td> +<td>1</td></tr> +<tr class="a"> +<td><a href="#org.apache.maven.plugin.clean.HelpMojo">org.apache.maven.plugin.clean.HelpMojo</a></td> +<td>1</td></tr></table></div><a name="org.apache.maven.plugin.clean.Cleaner"></a> +<div class="section"> +<h3>org.apache.maven.plugin.clean.Cleaner<a name="org.apache.maven.plugin.clean.Cleaner"></a></h3> +<table border="0" class="bodyTable"> +<tr class="b"> +<th>Bug</th> +<th>Category</th> +<th>Details</th> +<th>Line</th> +<th>Priority</th></tr> +<tr class="a"> +<td>org.apache.maven.plugin.clean.Cleaner.delete(File, boolean, boolean) forces garbage collection; extremely dubious except in benchmarking code</td> +<td>PERFORMANCE</td> +<td><a class="externalLink" href="http://findbugs.sourceforge.net/bugDescriptions.html#DM_GC">DM_GC</a></td> +<td><a href="./xref/org/apache/maven/plugin/clean/Cleaner.html#223">223</a></td> +<td>High</td></tr></table></div><a name="org.apache.maven.plugin.clean.HelpMojo"></a> +<div class="section"> +<h3>org.apache.maven.plugin.clean.HelpMojo<a name="org.apache.maven.plugin.clean.HelpMojo"></a></h3> +<table border="0" class="bodyTable"> +<tr class="b"> +<th>Bug</th> +<th>Category</th> +<th>Details</th> +<th>Line</th> +<th>Priority</th></tr> +<tr class="a"> +<td>org.apache.maven.plugin.clean.HelpMojo.build() may fail to clean up java.io.InputStream</td> +<td>EXPERIMENTAL</td> +<td><a class="externalLink" href="http://findbugs.sourceforge.net/bugDescriptions.html#OBL_UNSATISFIED_OBLIGATION">OBL_UNSATISFIED_OBLIGATION</a></td> +<td><a href="nullorg/apache/maven/plugin/clean/HelpMojo.html#68">68</a></td> +<td>Medium</td></tr></table></div> + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xright"> + © 2001-2014 + The Apache Software Foundation + + - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. + Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. + </div> + <div class="clear"> + <hr/> + </div> + </div> + </body> </html> \ No newline at end of file