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.

MavenError: Failed to execute goal on project: Could not resolve dependencies In Maven Multimodule project

I am trying to create a maven multi-module project. the project is created successfully but when I am trying to …

java maven exception dependencies multi-module
In a Maven project, how can I automatically update the version all child modules, plus the parent?

I have a multi-module project. parent POM (1.0-SNAPSHOT) |-- module1 (1.0-SNAPSHOT) |-- module2 (1.0-SNAPSHOT) `-- module3 (1.0-SNAPSHOT) When I execute …

maven-2 maven-release-plugin multi-module
Build order of Maven multimodule project?

The situation is, I have two Maven multimodule projects with the same structure: Parent - Module 1 - Module 2 When I …

java maven build multi-module
Execute gradle task on sub projects

I have a MultiModule gradle project that I am trying to configure. Root projA projB other projC projD projE ... What …

gradle build.gradle multi-module
Maven multi-module project - copying all "package" JARS from submodules into parent/target/

I have a maven project with quite a few submodules. What I am looking for is a way to get …

maven multi-module
Getting the properties defined in the parent POM inside the child modules [multi-module projects]

I'm having issues with passing properties from a super pom [of the multimodule project] into a child pom. At the …

maven properties multi-module
Maven says I have a cyclic reference in multi-module project but can't figure out why

I have a multi-module project that looks like this: module1 pom.xml module2 pom.xml pom.xml The pom.xml …

maven multi-module cyclic-reference
Why does sbt build fail with "MissingRequirementError: object scala.runtime in compiler mirror not found."?

I have this multi-module build configuration that I'm trying to get working, but whenever I try to compile the project …

scala sbt multi-module
ERROR : error.NonExistentClass Kotlin In multi module Dagger project

I'm using Dagger 2 and Kotlin for Android development. My project is also a multi-module project. My settings.gradle file is …

android kotlin dagger-2 multi-module
Specify common resources in a multi-module maven project

Is there any way to share resources between modules of a parent project in Maven? For example, I would like …

java maven maven-2 maven-3 multi-module