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.

Managing multi-module dependencies with Maven assembly plugin

I use Maven assembly plugin to create an assembly for my multi-module project. There are two separate applications built from …

maven dependency-management maven-assembly-plugin multi-module
Maven java compile error can not access CommonClassA

Background: I am developing Maven multi module project. One of the module is common module needed by other all modules. …

maven compiler-errors multi-module
How to update the version of child modules in Maven?

How to update the version of child modules? There are a lot of Stackoverflow questions like this but I was …

java maven module multi-module
Spring Boot: autowire beans from library project

I'm struggling to autowire beans from my custom library, imported with gradle. after reading couple of similar topics I am …

spring-boot spring-data-jpa multi-module spring-ioc component-scan
Import Maven multi-module project into Eclipse

How do I properly import Maven multi-module project into Eclipse? When I import new Maven project and select the parent …

java eclipse maven project multi-module
Maven Multi-module dependency package not found

I've got a multi module project: The parent POM.xml: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://…

java maven multi-module
Maven copy resources in multi module project

My need is pretty basic but I could not find any clean answer to it: I simply need to be …

maven resources multi-module
Maven multi-module: aggregate common dependencies in a single one?

I have searched for such a question without finding anything, so here I go. I have a multi-module maven project. …

maven dependencies multi-module
Problem with Eclipse and a Maven multi-module project

I have created a Maven project with the following structure: + root-project pom.xml (pom) + sub-projectA (jar) + sub-projectB (jar) I have …

eclipse maven-2 multi-module
maven: multi-module project assembly into single jar

I have a multi-module project and want to create a single jar containing the classes of all my modules. Inside …

maven maven-2 archive maven-assembly-plugin multi-module