Github user bbende commented on a diff in the pull request:
https://github.com/apache/nifi-registry/pull/14#discussion_r142460901
--- Diff: nifi-registry-security/pom.xml ---
@@ -34,12 +34,28 @@
<artifactId>jaxb2-maven-plugin</artifactId>
<executions>
<execution>
- <id>xjc</id>
+ <id>authorizations</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
-
<packageName>org.apache.nifi.registry.user.generated</packageName>
+ <sources>
--- End diff --
I noticed this file showed errors in my IDE, even though technically it
built fine... seems like bumping the jaxb2-maven-plugin to 2.3.1 in the root
pom pluginManagement cleared this up
---