This is an automated email from the ASF dual-hosted git repository.
kdoran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-maven.git
The following commit(s) were added to refs/heads/master by this push:
new 50f72f3 NIFI-5859 Fixing bug in doc generation that called getId()
instead of getArtifactId()
50f72f3 is described below
commit 50f72f3b7a5694f56ea99271e25b2591cb1a63a9
Author: Bryan Bende <[email protected]>
AuthorDate: Wed Mar 13 17:00:09 2019 -0400
NIFI-5859 Fixing bug in doc generation that called getId() instead of
getArtifactId()
---
src/main/java/org/apache/nifi/NarMojo.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/nifi/NarMojo.java
b/src/main/java/org/apache/nifi/NarMojo.java
index 0c7ab75..2ec5cc7 100644
--- a/src/main/java/org/apache/nifi/NarMojo.java
+++ b/src/main/java/org/apache/nifi/NarMojo.java
@@ -703,7 +703,7 @@ public class NarMojo extends AbstractMojo {
final ServiceAPIDefinition serviceAPIDefinition = new
StandardServiceAPIDefinition(
serviceDefinitionClass.getName(),
narArtifact.getGroupId(),
- narArtifact.getId(),
+ narArtifact.getArtifactId(),
narArtifact.getBaseVersion()
);