909 questions
0 votes
1 answer
73 views
Run maven plugin for root directory in multi-module java project
I have a maven based multi-module Java project. The root directory consists of various sub-modules as well as other directories which holds scripts, configurations and documentations files. There are ...
0 votes
1 answer
41 views
Spring Boot auto-configuration module disables app's own @Repository detection
I have a multi-module Maven project using Spring Boot 3.4.4 with the following structure: my-project/ ├── pom.xml ├── lib-model/ │ ├── pom.xml │ ├── src/main/java/com/example/libmodel/ │ │ ├── ...
0 votes
0 answers
35 views
Package does not exist in the module-info declaration in Java
My current Java project is designed using a multi-module structure, consisting of a backend and a frontend module. Each of these modules has its own pom.xml and module-info.java. The POM files are ...
0 votes
1 answer
39 views
Centralize maven project version to ease branching strategy
I have a maven based multi-module project. Also we manage multiple parallel releases for different clients for which we obviously need long lived branches. To all these branches, we give assign unique ...
1 vote
3 answers
187 views
CLion how to make multi module project?
I have to make a C multi module project in CLion. The project is called a2-dragos12312-a1, and in it I have a "c files" directory containing main.c and ui.c, and a "headers" ...
0 votes
0 answers
53 views
How to Reuse Use Cases Across Different Modules in a Modular Android App?
I have a modular Android application following Clean Architecture, where each module is responsible for a specific feature. I have a Recipe Module that... ... fetches recipe data from the server ...
1 vote
0 answers
45 views
Android Multi module Build Error: Could not determine the dependencies of task ':app:checkDebugLibraries'. Could not resolve project :payment
I am getting this error for my multimodule android app when I run gradle clean build FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:...
1 vote
1 answer
831 views
How to setup Kover for multi module project with Android & Kotlin modules
I have multi module project with both Android & Kotlin modules. To simplify I have the following modules: :data is an Android module. This just has the variants debug and release. :domain is a ...
0 votes
0 answers
79 views
Google Maps API - HTTP 403 When Restricting API Key (Works When Unrestricted)
I am integrating the Google Maps Routes API into my Android application, but I keep getting an HTTP 403 Forbidden error when restricting the API key to my package name and SHA-1 fingerprint in Google ...
0 votes
0 answers
19 views
IDEA Terminals start in last added module - how to change?
My IntelliJ IDEA project includes a selection of modules form the same monorepo. After I import a new module, new terminals open in the root of the most recently added module, even after restarts. ...
1 vote
1 answer
30 views
When depending on a parent, include all sub-modules automatically
I've this project: The sub-modules in driven-adapters can grow or decrease. What I'd like to do is when including the dependency on the parent (driven-adapters) it will bring on the dependencies/sub-...
2 votes
2 answers
388 views
Navigation in multi-module Compose project
I have a multi-module compose project where I am still trying to define how the navigation should be done. As far as I know, the following key concepts need to be taken into account (correct me if I ...
0 votes
0 answers
36 views
How to define project version only once in a multi module maven project [duplicate]
I have a multi module maven project with this structure: maven-project/ │-- pom.xml (Main parent POM) │-- module-a/ │ ├── pom.xml │-- module-b/ │ ├── pom.xml │-- module-c/ │ ├── pom.xml │-- ...
0 votes
0 answers
45 views
Android Compose navigation in Multi-Module project
I have my android multi-module app made in kotlin. Within the feature module, there is a submodule myitems, in which there are the following submodules: data, domain, navigation and presentation. I ...
1 vote
1 answer
194 views
Package does not exist [Maven Multi-module Spring Boot]
I downloaded a Spring Boot project on Spring Initializer, got version 3.4.2, and installed Maven. I planned to build a POC to add some shared classes to the Shared module and reuse them in other ...