You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2016/10/01 15:52:40 UTC

maven git commit: [MNG-6092] warn if prerequisites.maven is used for non-plugin projects o Followup Fixed checkstyle reported error.

Repository: maven
Updated Branches:
  refs/heads/master c10d813c6 -> 54827e6b0


[MNG-6092] warn if prerequisites.maven is used for non-plugin projects
 o Followup Fixed checkstyle reported error.


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/54827e6b
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/54827e6b
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/54827e6b

Branch: refs/heads/master
Commit: 54827e6b0fc02425f701cfcccde46f81edcb7058
Parents: c10d813
Author: Karl Heinz Marbaise <kh...@apache.org>
Authored: Sat Oct 1 17:52:17 2016 +0200
Committer: Karl Heinz Marbaise <kh...@apache.org>
Committed: Sat Oct 1 17:52:17 2016 +0200

----------------------------------------------------------------------
 maven-core/src/main/java/org/apache/maven/DefaultMaven.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/54827e6b/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
----------------------------------------------------------------------
diff --git a/maven-core/src/main/java/org/apache/maven/DefaultMaven.java b/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
index d6f58b8..15b946e 100644
--- a/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
+++ b/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
@@ -204,10 +204,12 @@ public class DefaultMaven
     {
         try
         {
+            // CHECKSTYLE_OFF: LineLength
             for ( AbstractMavenLifecycleParticipant listener : getLifecycleParticipants( Collections.<MavenProject>emptyList() ) )
             {
                 listener.afterSessionStart( session );
             }
+            // CHECKSTYLE_ON: LineLength
         }
         catch ( MavenExecutionException e )
         {