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/09/24 15:19:39 UTC

[17/33] maven git commit: [MNG-6073] Addition of a core extension point to the model builder supporting model finalization. [MNG-3825] Dependencies with classifier should not always require a version.

[MNG-6073] Addition of a core extension point to the model builder supporting model finalization.
[MNG-3825] Dependencies with classifier should not always require a version.

o Updated to move a '@since' tag to the correct method.


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

Branch: refs/heads/MNG-6056-feature-toggle
Commit: 2e255c8e474ead2a18fd0dddd678a4fac84968a9
Parents: 7181e5b
Author: Christian Schulte <sc...@apache.org>
Authored: Sat Jul 30 20:22:26 2016 +0200
Committer: Christian Schulte <sc...@apache.org>
Committed: Sat Jul 30 20:22:26 2016 +0200

----------------------------------------------------------------------
 .../org/apache/maven/model/building/DefaultModelBuilder.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/2e255c8e/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
----------------------------------------------------------------------
diff --git a/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java b/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
index 2fdc4ee..e5e5dc5 100644
--- a/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
+++ b/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
@@ -239,15 +239,15 @@ public class DefaultModelBuilder
         return this;
     }
 
-    /**
-     * @since 3.4
-     */
     public DefaultModelBuilder setReportingConverter( ReportingConverter reportingConverter )
     {
         this.reportingConverter = reportingConverter;
         return this;
     }
 
+    /**
+     * @since 3.4
+     */
     public DefaultModelBuilder setModelFinalizers( List<ModelFinalizer> value )
     {
         this.modelFinalizers = value;