Questions tagged [multi-module]

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.

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 is handled via aggregation of an aggregator project providing list of aggregated modules.

Often, but not necessarily, the aggregator project is also the parent project of aggregated modules, providing further governance and common management on - for example - plugins, dependencies, properties.

More Info

886 questions
0
votes
1 answer

Maven multi module project - start module from another module?

I'm a maven newbie...maybe someone can help. Is it possible to start a module from another? For example: My modules: F-Frontend, B-Backend Now i start my frontend-module via jetty, but i need the backend functionality and need to run the…
NVD
  • 15
  • 5
0
votes
1 answer

Mutilmodule app. Only first module works. Android Studio

I have a project with 3 additional library project(modules) from projects I created previously. All codes works perfectly as a stand alone, however on importing all 3, only module 1 works. The build and manifest merge are successful, no errors. Code…
Ss.wa
  • 31
  • 2
0
votes
0 answers

Project dependencies confusion

I have project SB (spring boot using gradle) depends upon project A (java with maven) that depends upon project B (java with maven) In my SB project, I build one large jar for embedded tomcat deployment. I am not sure if this means…
sonoerin
  • 5,015
  • 23
  • 75
  • 132
0
votes
3 answers

SBT 0.13.8 multi module project with Playframework 2.4.2

I have a simple project with two submodules, proja and projb. Proja contains trait UserController used in UserControllerImpl inside projb. project on github: https://github.com/aswarcewicz/play-sbt-multimodule root build.sbt: name :=…
user2860204
  • 151
  • 9
0
votes
0 answers

maven custom build sequence

I want to be able to execute the build of one module, in the middle of the building of an other module, but can't find how to deal with this. I have a project with 3 modules : dao, dbGenerator and appli. project : |- dao : hibernate dao. Needs an…
cyril
  • 1
  • 2
0
votes
0 answers

maven dependencies.dependency.version missing of sibling

I have a parent project and 2 child projects - all of them present in a directory. Main Directory |__Parent |__Child 1 |__Child 2 Child 2 is dependent on Child 1. Parent has dependency-management defined with all the common…
l a s
  • 3,836
  • 10
  • 42
  • 61
0
votes
1 answer

How can I overwrite parent version number in parent module from sub module

I am now building a spring application which consists of multiple spring projects as micro-services. I want to put all these spring projects into a parent module and then convert it into a multi-module maven project. But I have met a problem as each…
user3006967
  • 3,291
  • 10
  • 47
  • 72
0
votes
1 answer

Are there any pros to add root module in build.sbt?

I have multi module sbt project: ├── build.sbt ├── bar │   ├── build.sbt │   └── ... ├── foo │   ├── build.sbt │   └── ... └── ... And 2 versions of build.sbt: lazy val foo = project in(file("./foo")) lazy val bar = project in(file("./bar")) And…
krynio
  • 2,442
  • 26
  • 30
0
votes
2 answers

What is the best approach and optimal path to create sbt multi-module project with activator?

I am creating my projects with simple 'activator new '. Now i wanted to create a multimodule project to split for instance frontend logic, backend logic. What is the best way to create multimodule project with activator.
Łukasz Rzeszotarski
  • 5,791
  • 6
  • 37
  • 68
0
votes
1 answer

Maven project with multiple module and multiple assembly

I'm having difficulties trying to construct a maven project with multiple module and each module has its own assembly. I'm not too sure if this can be done in maven or not in the first place. I have a project structure like so: project +- root | …
p01ntbl4nk
  • 50
  • 1
  • 9
0
votes
1 answer

Gradle does not execute subprojects

Currently I'm trying to migrate my project to gradle from maven and to do so I'm creating a custom script which generates gradle build files from pom files taking into account all project specifics. Script generates "build-generated.gradle" file…
Denis Gburg
  • 23
  • 1
  • 4
0
votes
1 answer

Lookup multiple modules within Wicket

I am creating a wicket (7.0.0-M5) application and I want to use the standard EJB framework. So I created a multi modul project with an ear modul EAR_NAME, a web modul WICKET_NAME, an ejb module BUSINESS_EJB_NAME and an ejb module COMMON_EJB_NAME. I…
0
votes
1 answer

spring multi module project with different context

Hy folks. I am getting issue in multi module project. My project have 3 jar modules and 1 web module. ABZ ABZ-service ABZ-dao ABZ-webapp in this 'ABZ' is my parent module and 'ABZ-webapp' is my web module. All request are being treated through…
user3029929
  • 471
  • 2
  • 7
  • 20
0
votes
1 answer

Maven multimodule project but each submodule with its own controller, service, dao, jsp

Actually in a multimodule maven architecture we usually create module by web, services, DAOs topics and we end up with the following schema (for a project with 3 submodules): POM paernt | |service | …
0
votes
1 answer

Speed up the build process in multi-module maven project with Intellij IDEA

I am working on multi-module Java EE web application project(maven project) which have 23 modules. It have main 4 modules which can be used separately and other modules are supported back end module for those 4 modules. When the project is built,…