svn commit: r979705 [4/5] - in /websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugin/ apidocs/org/apache/maven/plugin/class-u

2016-02-06 Thread agudian
Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/AbstractCompilerMojo.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/AbstractCompilerMojo.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/AbstractCompilerMojo.html
 Sat Feb  6 19:10:36 2016
@@ -72,1343 +72,1345 @@
 64  import java.util.Date;
 65  import java.util.HashSet;
 66  import java.util.LinkedHashMap;
-67  import java.util.List;
-68  import java.util.Map;
-69  import java.util.Set;
-70  
-71  /**
-72   * TODO: At least one step could be optimized, 
currently the plugin will do two
-73   * scans of all the source code if the compiler has 
to have the entire set of
-74   * sources. This is currently the case for at least 
the C# compiler and most
-75   * likely all the other .NET compilers too.
-76   *
-77   * @author others
-78   * @author mailto:tryg...@inamo.no">Trygve 
Laugstøl
-79   * @version $Id$
-80   * @since 2.0
-81   */
-82  public abstract class AbstractCompilerMojo
-83  extends AbstractMojo
-84  {
-85  
-86  // 
--
-87  // Configurables
-88  // 
--
-89  
-90  /**
-91   * Indicates whether the build will continue 
even if there are compilation errors.
-92   *
-93   * @since 2.0.2
-94   */
-95  @Parameter( 
property = "maven.compiler.failOnError", 
defaultValue = "true" )
-96  private boolean failOnError = true;
-97  
-98  /**
-99   * Set to true to 
include debugging information in the compiled class files.
-100  */
-101 @Parameter( 
property = "maven.compiler.debug", defaultValue 
= "true" )
-102 private boolean debug = true;
-103 
-104 /**
-105  * Set to true to show 
messages about what the compiler is doing.
-106  */
-107 @Parameter( 
property = "maven.compiler.verbose", 
defaultValue = "false" )
-108 private boolean verbose;
-109 
-110 /**
-111  * Sets whether to show source locations where 
deprecated APIs are used.
-112  */
-113 @Parameter( 
property = "maven.compiler.showDeprecation", 
defaultValue = "false" )
-114 private boolean showDeprecation;
-115 
-116 /**
-117  * Set to true to 
optimize the compiled code using the compiler's optimization methods.
-118  */
-119 @Parameter( 
property = "maven.compiler.optimize", 
defaultValue = "false" )
-120 private boolean optimize;
-121 
-122 /**
-123  * Set to true to show 
compilation warnings.
-124  */
-125 @Parameter( 
property = "maven.compiler.showWarnings", 
defaultValue = "false" )
-126 private boolean showWarnings;
-127 
-128 /**
-129  * The -source argument for the Java 
compiler.
-130  */
-131 @Parameter( 
property = "maven.compiler.source", 
defaultValue = "1.5" )
-132 protected String source;
-133 
-134 /**
-135  * The -target argument for the Java 
compiler.
-136  */
-137 @Parameter( 
property = "maven.compiler.target", 
defaultValue = "1.5" )
-138 protected String target;
-139 
-140 /**
-141  * The -encoding argument for the Java 
compiler.
-142  *
-143  * @since 2.1
-144  */
-145 @Parameter( 
property = "encoding", defaultValue = "${project.build.sourceEncoding}" )
-146 private String encoding;
-147 
-148 /**
-149  * Sets the granularity in milliseconds of the 
last modification
-150  * date for testing whether a source needs 
recompilation.
-151  */
-152 @Parameter( 
property = "lastModGranularityMs", defaultValue 
= "0" )
-153 private int 
staleMillis;
-154 
-155 /**
-156  * The compiler id of the compiler to use. See 
this
-157  * guide for more information.
-158  */
-159 @Parameter( 
property = "maven.compiler.compilerId", 
defaultValue = "javac" )
-160 private String compilerId;
-161 
-162 /**
-163  * Version of the compiler to use, ex. "1.3", 
"1.5", if {@link #fork} is set to true.
-164  */
-165 @Parameter( 
property = "maven.compiler.compilerVersion" )
-166 private String compilerVersion;
-167 
-168 /**
-169  * Allows running the compiler in a separate 
process.
-170  * If false it uses the 
built in compiler, while if true it will use an 
executable.
-171  */
-172 @Parameter( 
property = "maven.compiler.fork", defaultValue 
= "false" )
-173 private boolean fork;
-174 
-175 /**
-176  * Initial siz

svn commit: r979705 [1/5] - in /websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugin/ apidocs/org/apache/maven/plugin/class-u

2016-02-06 Thread agudian
Author: agudian
Date: Sat Feb  6 19:10:36 2016
New Revision: 979705

Log:
Site checkin for project Apache Maven Compiler Plugin

Modified:

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/allclasses-frame.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/allclasses-noframe.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/constant-values.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/deprecated-list.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/help-doc.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/index-all.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/index.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/AbstractCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/CompilationFailureException.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/CompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/TestCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/class-use/AbstractCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/class-use/CompilationFailureException.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/class-use/CompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/class-use/TestCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/AbstractCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/CompilationFailureException.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/CompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/DependencyCoordinate.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/HelpMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/TestCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/class-use/AbstractCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/class-use/CompilationFailureException.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/class-use/CompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/class-use/DependencyCoordinate.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/class-use/HelpMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/class-use/TestCompilerMojo.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/package-frame.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/package-summary.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/package-tree.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/compiler/package-use.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/package-frame.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apache/maven/plugin/package-summary.html

websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/apidocs/org/apach

svn commit: r979705 [2/5] - in /websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugin/ apidocs/org/apache/maven/plugin/class-u

2016-02-06 Thread agudian
Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/compile-mojo.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/compile-mojo.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/compile-mojo.html
 Sat Feb  6 19:10:36 2016
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
 
-
+
 
 Apache Maven Compiler Plugin – compiler:compile
 
@@ -73,9 +73,9 @@
 
 
 
-  | Last Published: 2016-01-16
+  | Last Published: 2016-02-06
   
-Version: 3.5
+Version: 3.5.1
 
 
 
@@ -357,7 +357,7 @@
   
 Full name:
   
-org.apache.maven.plugins:maven-compiler-plugin:3.5:compile
+org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile
   
 Description:
   

Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/dependencies.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/dependencies.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/dependencies.html
 Sat Feb  6 19:10:36 2016
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
 
-
+
 
 Apache Maven Compiler Plugin – Project Dependencies
 
@@ -73,9 +73,9 @@
 
 
 
-  | Last Published: 2016-01-16
+  | Last Published: 2016-02-06
   
-Version: 3.5
+Version: 3.5.1
 
 
 
@@ -819,7 +819,7 @@
 
 Dependency Tree
 
-org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5 
+org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5.1 
 
 
 Apache Maven Compiler Plugin

Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/dependency-convergence.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/dependency-convergence.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/dependency-convergence.html
 Sat Feb  6 19:10:36 2016
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
 
-
+
 
 Apache Maven Compiler Plugin – Dependency Convergence
 
@@ -73,9 +73,9 @@
 
 
 
-  | Last Published: 2016-01-16
+  | Last Published: 2016-02-06
   
-Version: 3.5
+Version: 3.5.1
 
 
 
@@ -489,11 +489,11 @@
 
 3.8.1
 
-org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5\- org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:2.1:test   \- org.codehaus.plexus:plexus-archiver:jar:2.2:test  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:test \- (junit:junit:jar:3.8.1:test
 - omitted for conflict with 4.12)
+org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5.1\- org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:2.1:test   \- org.codehaus.plexus:plexus-archiver:jar:2.2:test  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:test \- (junit:junit:jar:3.8.1:test
 - omitted for conflict with 4.12)
 
 4.12
 
-org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5\- junit:junit:jar:4.12:test
+org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5.1\- junit:junit:jar:4.12:test
 
 org.apache.maven.shared:maven-shared-utils
 
@@ -504,11 +504,11 @@
 
 0.1
 
-org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5\- org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile   \- (org.apache.maven.shared:maven-shared-utils:jar:0.1:compile
 - omitted for conflict with 3.0.0)
+org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5.1\- org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile   \- (org.apache.maven.shared:maven-shared-utils:jar:0.1:compile
 - omitted for conflict with 3.0.0)
 
 3.0.0
 
-org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5\- org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile
+org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:3.5.1\- org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile
 
 org.apache.maven:maven-artifact
 
@@ -519

svn commit: r979705 [3/5] - in /websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugin/ apidocs/org/apache/maven/plugin/class-u

2016-02-06 Thread agudian
Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/source-repository.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/source-repository.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/source-repository.html
 Sat Feb  6 19:10:36 2016
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
 
-
+
 
 Apache Maven Compiler Plugin – Source Repository
 
@@ -73,9 +73,9 @@
 
 
 
-  | Last Published: 2016-01-16
+  | Last Published: 2016-02-06
   
-Version: 3.5
+Version: 3.5.1
 
 
 
@@ -454,21 +454,21 @@
 
 Web Browser Access
 The following is a link to a browsable version of the source repository:
-http://svn.apache.org/viewvc/maven/plugins/tags/maven-compiler-plugin-3.5";>http://svn.apache.org/viewvc/maven/plugins/tags/maven-compiler-plugin-3.5
+http://svn.apache.org/viewvc/maven/plugins/tags/maven-compiler-plugin-3.5.1";>http://svn.apache.org/viewvc/maven/plugins/tags/maven-compiler-plugin-3.5.1
 
 Anonymous Access
 The source can be checked out anonymously from Subversion with this 
command:
-$ svn checkout 
http://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5 
maven-compiler-plugin
+$ svn checkout 
http://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5.1 
maven-compiler-plugin
 
 Developer Access
 Everyone can access the Subversion repository via HTTP, but committers must 
checkout the Subversion repository via HTTPS.
-$ svn checkout 
https://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5 
maven-compiler-plugin
+$ svn checkout 
https://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5.1 
maven-compiler-plugin
 To commit changes to the repository, execute the following command to 
commit your changes (svn will prompt you for your password):
 $ svn commit --username 
your-username -m "A message"
 
 Access from Behind a 
Firewall
 For those users who are stuck behind a corporate firewall which is blocking 
HTTP access to the Subversion repository, you can try to access it via the 
developer connection:
-$ svn checkout 
https://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5 
maven-compiler-plugin
+$ svn checkout 
https://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5.1 
maven-compiler-plugin
 
 Access Through a Proxy
 The Subversion client can go through a proxy, if you configure it to do so. 
First, edit your "servers" configuration file to indicate which proxy 
to use. The file's location depends on your operating system. On Linux or Unix 
it is located in the directory "~/.subversion". On Windows it is in 
"%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is 
a hidden directory.)

Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/surefire-report.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/surefire-report.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/surefire-report.html
 Sat Feb  6 19:10:36 2016
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
 
-
+
 
 Apache Maven Compiler Plugin – Surefire Report
 
@@ -73,9 +73,9 @@
 
 
 
-  | Last Published: 2016-01-16
+  | Last Published: 2016-02-06
   
-Version: 3.5
+Version: 3.5.1
 
 
 
@@ -470,7 +470,7 @@ function toggleDisplay(elementId) {
 0
 0
 100%
-6.105
+5.139
 Note: failures are anticipated and checked for with assertions while errors 
are unanticipated.
 
 Package List
@@ -491,7 +491,7 @@ function toggleDisplay(elementId) {
 0
 0
 100%
-6.105
+5.139
 Note: package statistics are not computed recursively, they only sum up all 
of its testsuites numbers.
 
 org.apache.maven.plugin.compiler
@@ -513,7 +513,7 @@ function toggleDisplay(elementId) {
 0
 0
 100%
-6.105
+5.139
 
 Test Cases
 [Summary] [Package List] 
[Test Cases]
@@ -523,39 +523,39 @@ function toggleDisplay(elementId) {
 
 
 testCompilerBasic
-2.23
+1.994
 
 
 testCompilerIncludesExcludes
-0.387
+0.51
 
 
 testCompilerEmptySource
-0.207
+0.185
 
 
 testCompileFailure
-0.205
+0.202
 
 
 testOneOutputFileForAllInput2
-0.202
+0.225
 
 
 testOneOutputFileForAllInput
-0.483
+0.234
 
 
 testCompileFailOnError
-0.357
+0.142
 
 
 testCompilerArgs
-0.139
+0.183
 
 
 t

svn commit: r979705 [5/5] - in /websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugin/ apidocs/org/apache/maven/plugin/class-u

2016-02-06 Thread agudian
Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/CompilationFailureException.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/CompilationFailureException.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/CompilationFailureException.html
 Sat Feb  6 19:10:36 2016
@@ -34,59 +34,58 @@
 26  
 27  /**
 28   * @author mailto:ja...@maven.org">Jason van 
Zyl
-29   * @version $Id$
-30   * @since 2.0
-31   */
-32  @SuppressWarnings( 
"serial" )
-33  public class 
CompilationFailureException
-34  extends MojoFailureException
-35  {
-36  private static final 
String LS = System.getProperty( "line.separator" );
-37  
-38  public CompilationFailureException(
 List messages )
-39  {
-40  super( null, 
shortMessage( messages ), longMessage( messages ) );
-41  }
-42  
-43  public static 
String longMessage( List messages )
-44  {
-45  StringBuilder 
sb = new StringBuilder();
-46  
-47  if ( messages != null )
-48  {
-49  for ( CompilerMessage compilerError : messages )
-50  {
-51  
sb.append( compilerError ).append( LS );
-52  }
-53  }
-54  return sb.toString();
-55  }
-56  
-57  /**
-58   * Short message will have the error message if 
there's only one, useful for errors forking the compiler
-59   *
-60   * @param messages
-61   * @return the short error message
-62   * @since 2.0.2
-63   */
-64  public static 
String shortMessage( List messages )
-65  {
-66  StringBuilder 
sb = new StringBuilder();
-67  
-68  sb.append( 
"Compilation failure" );
-69  
-70  if ( messages.size() == 1 )
-71  {
-72  
sb.append( LS );
-73  
-74  
CompilerMessage compilerError = messages.get( 0 );
-75  
-76  
sb.append( compilerError ).append( LS );
-77  }
-78  
-79  return sb.toString();
-80  }
-81  }
+29   * @since 2.0
+30   */
+31  @SuppressWarnings( 
"serial" )
+32  public class 
CompilationFailureException
+33  extends MojoFailureException
+34  {
+35  private static final 
String LS = System.getProperty( "line.separator" );
+36  
+37  public CompilationFailureException(
 List messages )
+38  {
+39  super( null, 
shortMessage( messages ), longMessage( messages ) );
+40  }
+41  
+42  public static 
String longMessage( List messages )
+43  {
+44  StringBuilder 
sb = new StringBuilder();
+45  
+46  if ( messages != null )
+47  {
+48  for ( CompilerMessage compilerError : messages )
+49  {
+50  
sb.append( compilerError ).append( LS );
+51  }
+52  }
+53  return sb.toString();
+54  }
+55  
+56  /**
+57   * Short message will have the error message if 
there's only one, useful for errors forking the compiler
+58   *
+59   * @param messages the messages
+60   * @return the short error message
+61   * @since 2.0.2
+62   */
+63  public static 
String shortMessage( List messages )
+64  {
+65  StringBuilder 
sb = new StringBuilder();
+66  
+67  sb.append( 
"Compilation failure" );
+68  
+69  if ( messages.size() == 1 )
+70  {
+71  
sb.append( LS );
+72  
+73  
CompilerMessage compilerError = messages.get( 0 );
+74  
+75  
sb.append( compilerError ).append( LS );
+76  }
+77  
+78  return sb.toString();
+79  }
+80  }
 
 
 Copyright © 2001–2016 http://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.

Modified: 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/package-frame.html
==
--- 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/package-frame.html
 (original)
+++ 
websites/production/maven/components/plugins-archives/maven-compiler-plugin-LATEST/xref/org/apache/maven/plugin/compiler/package-frame.html
 Sat Feb  6 19:10:36 2016
@@ -3,7 +3,7 @@
 


-   Apache Maven Compiler Plugin 3.5 Reference Package 
org.apache.maven.plugin.compiler
+   Apache Maven Compiler Plugin 3.5.1 Reference Package 
org.apache.maven.plugin.compiler




Mo