
JUnit Test Groups · Divides your JUnit tests into groups which can be executed separately or all at once
JUnit Test Groups · Divides your JUnit tests into groups which can be executed separately or all at once
Depgraph Maven Plugin · This Maven plugin generates dependency graphs on single modules or in an aggregated form on multi-module projects. The graphs are represented by .dot files. In case that Graphviz is installed on the machine where this plugin is run, the .dot file can be directly converted into all supported image files.
JITWatch JarScan Maven Plugin · A Maven plugin that scans the project artifact and its dependencies for methods that cannot be inlined by the JIT compiler. It uses the JarScan utility from the JITWatch project to do that. See https://github.com/AdoptOpenJDK/jitwatch .
Parallel Stream Support · Parallel streams in Java with a custom ForkJoinPool.
Pedantic POM Enforcers · The Pedantic POM Enforcers consist of several Maven enforcer rules that help you keep your project setup consistent and organized.
${project.artifactId} · A variant of Spring's JdbcTemplate that uses Oracle Update Batching. If Spring's classic JdbcTemplate is used in combination with an Oracle DB, the `batchUpdate()` methods won't return the number of affected rows. Instead, these methods do always return an array containing -2 (`Statement#SUCCESS_NO_INFO`) in each element. In order to get the number of affected rows during a batch INSERT/UPDATE/DELETE, it is required to use [Oracle Update Batching](http://docs.oracle.com/cd/B28359_01/java.111/b31224/oraperf.htm#autoId2).