Mvn vs. Gradle
Comparisons https://phauer.com/2018/moving-back-from-gradle-to-maven/ https://gradle.org/gradle-vs-maven-performance/ https://dzone.com/articles/gradle-vs-maven https://www.baeldung.com/ant-maven-gradle Further Gradle Info https://tomgregory.com/5-reasons-to-switch-to-the-gradle-kotlin-dsl/ https://www.oreilly.com/library/view/gradle-beyond-the/9781449373801/ch04.html Further Maven Info Essential Maven Plugins From https://javarevisited.blogspot.com/2016/08/top-10-maven-plugins-every-java-developer-know.html: maven-compiler-plugin: This is the most important maven plugin. You almost always use it unknowingly. This plugin compiles your Java code from the standard location Maven specifies e.g. /src/main/java and /src/main/resources. maven-surefire-plugin: The Maven Surefire plugin is the default plugin for running unit tests. You can also customize the behavior of this plugin by specifying the configuration in pom....