jamesdbaker
jamesdbaker
The following two tests fail when running as a user with super-user privileges (e.g. sudo, root) on Linux: * AllAnnotationsJsonConsumerTest.java * EntityCountTest.java The cause of this is that when running...
Closes #53
Add a module-info.java file to the library so that it is compatible with Java 9+. Specifically, doing so will avoid the following warning when including Iban4J in a Java 9...
The [Louvain algorithm](https://en.wikipedia.org/wiki/Louvain_method) is commonly used to identify communities in graphs, and is present in other libraries/tools such as [NetworkX](https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.community.louvain.louvain_communities.html) and [Neo4J](https://neo4j.com/docs/graph-data-science/current/algorithms/louvain/). It would be great if an implementation was...
The following code works fine on Java 8, but is throwing a warning on Java 9 and returning no results: Reflections reflections = new Reflections(); Set components = reflections.getSubTypesOf(componentClazz); The...