Github user kevdoran commented on a diff in the pull request:
https://github.com/apache/nifi-registry/pull/14#discussion_r142514956
--- Diff: nifi-registry-security/pom.xml ---
@@ -51,11 +67,25 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
- <excludes>**/user/generated/*.java</excludes>
+
<excludes>**/authorization/file/generated/*.java,**/authorization/file/tenants/generated/*.java</excludes>
</configuration>
</plugin>
</plugins>
</build>
+
+ <dependencyManagement>
+ <dependencies>
+ <!-- This is here because Spring Security 4.2.3.RELEASE builds
against Spring Framwork 4.3.9.RELEASE -->
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-framework-bom</artifactId>
--- End diff --
Good catch. Yep, will do.
---