You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by bb...@apache.org on 2018/07/18 14:59:46 UTC

[3/3] nifi-maven git commit: NIFI-5304 - Changed Lifecycle Phase Binding for Help Mojo

NIFI-5304 - Changed Lifecycle Phase Binding for Help Mojo

Moved Maven Plugin Plugin help Mojo from "process-classes" to
"generate-sources" lifecycle phase to ensure the help Mojo is included
in the built plugin.

This closes #5.

Signed-off-by: Bryan Bende <bb...@apache.org>


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

Branch: refs/heads/master
Commit: 953ddf4db63509dc9c2c4cb531af0324626ac6dc
Parents: d0210b9
Author: Martin Payne <de...@martinpayne.me.uk>
Authored: Wed Jun 13 06:48:53 2018 +0100
Committer: Bryan Bende <bb...@apache.org>
Committed: Tue Jul 17 15:04:00 2018 -0400

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi-maven/blob/953ddf4d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9a31087..daa17cb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -355,7 +355,7 @@
                         <goals>
                             <goal>helpmojo</goal>
                         </goals>
-                        <phase>process-classes</phase>
+                        <phase>generate-sources</phase>
                     </execution>
                 </executions>
             </plugin>