Top "Multi-module" questions

A multi-module project/application is composed by several modules each focusing on a certain concern, enforcing the SRP (Single Responsibility Principle) at module level.

In a multi-module project, can a maven module access transitive test-scoped dependencies of another module it depends on?

I have a multi-module Maven+Spring project. Some modules depend on other modules. Let's say we have a module named …

unit-testing maven dependencies multi-module
Maven - Child Module Profiles

Problem I have a maven project that has a similar structure to the following one: (simplified for explanation purposes) --parent |…

maven pom.xml multi-module maven-profiles
Maven multi module project cannot find sibling module

I can't seem to get Maven to find a sibling's module in a multi-module project. I've run mvn clean install …

java maven multi-module
Maven : Multimodule projects and versioning

What are the best practices for software versioning and multimodules projects with Maven? I mean, when I create a multimodules …

maven versioning multi-module
Spring-Boot multi module unable to read properties file from another module

I have searched High and low and still I am unable to find a simple answer to this very annoying …

maven spring-boot multi-module application.properties java-11
Maven multi-module project and Jenkins

I have the following projects organized in a flat structured way: parentProject +-pom.xml projectWeb <depends on libraryA and …

java maven jenkins multi-module
How to create a Jandex index in Quarkus for classes in a external module

First of all, I have a multi-module maven hierarchy like that: ├── project (parent pom.xml) │   ├── service │   ├── api-library So now to …

java multi-module quarkus
Why Configuration on demand is not supported by the current version of the Gradle plugin?

Configuration on demand is not supported by version 3.1.2 of the Android Gradle plugin when using Gradle version 4.6 or above. gradle …

android gradle android-gradle-plugin multi-module
How to use master pom file to checkout all modules of a web application and build all modules

I have a web application that relies on several modules. So to build it, I have a master pom.xml …

maven build-automation multi-module build-management
Right way to use @ComponentScan in multi module Java-Config Spring MVC app

I've just started a new spring project, and this time I want to do things "right". In the last project …

spring maven spring-mvc multi-module spring-java-config