Maven Project with Multiple Source Directories 1. Introduction We sometimes need to use multiple source directories in a Java project. A common case example when there are classes that are generated automatically and placed in a different directory. In this short article, we’ll show how to set up Maven to work… Continue Reading maven-project-multiple-src-directories

Multi-Module Maven Application with Java Modules 1. Overview The Java Platform Module System (JPMS) adds more reliability, better separation of concerns, and stronger encapsulation to Java applications. However, it’s not a build tool, hence it lacks the ability for automatically managing project dependencies. Of course, we may wonder whether if… Continue Reading maven-multi-module-project-java-jpms