multi-module Questions
4
Solved
We use gradle 3.3 and jacoco tool verson 0.7.6.201602180812.
We have a gradle multi-project like this:
parent
prod1
prod2
prod3
int-test
We use unit-tests testing the project sources and ja...
Rust asked 2/1, 2017 at 15:58
1
I have a multi-module Android gradle project.
project
|- app
|- module1
|- module2
Each of the modules contains unit tests, the app module also contains Instrumented Tests. Instead of taking...
Deepset asked 11/7, 2019 at 7:12
23
Solved
I'm using Dagger 2 and Kotlin for Android development.
My project is also a multi-module project.
My settings.gradle file is like this:
include :app
include :lib
I'm also maintaining the lib mod...
Reuben asked 14/7, 2017 at 9:41
8
How do I properly import a Maven multi-module project into Eclipse? When I import a new Maven project and select the parent pom, I can see the submodules under the parent pom which are visible in t...
Shiri asked 2/9, 2017 at 8:30
2
Solved
There is a multi-module project. Inside the child I need to do some complicated stuff (integration test with deploying to application server and so on). So there is an integrationtest child, and fr...
Fatal asked 28/10, 2010 at 7:41
4
Solved
I have multi-module maven project. The acceptance-tests module has dependency from api module in pom.xml (Replacing real company name by xxx to keep confidentiality). I am trying to import some cla...
Shah asked 21/4, 2020 at 10:16
3
I have my multimodule spring boot project. I moved service, entity and repository to the core module and in the war module I have the controller alone.
What is the problem here? If I use without J...
Whitherward asked 26/1, 2019 at 20:51
5
Background:
I am developing Maven multi module project.
One of the module is common module needed by other all modules.
This module contain CommonClassA.java.
common module is properly compiled...
Gravure asked 15/8, 2013 at 3:27
4
Solved
I'm struggling to autowire beans from my custom library, imported with gradle.
after reading couple of similar topics I am still unable to find solution.
I have a Spring Boot project that depends o...
Martijn asked 23/1, 2017 at 21:21
1
i am trying to build an native image with graalvm and spring boot.
my project has several modules.when i try to build native image i got this error:
Error: Please specify class (or <module>/&...
Sniperscope asked 10/12, 2022 at 18:8
2
I have two modules (editor and engine) that work with a common database. For deployment of scripts I want to use liquibase. I do not want to duplicate the same scripts in two places, and I want to ...
Naashom asked 22/6, 2019 at 18:26
2
I have been looking for a solution for days for merging multiple Jacoco reports for a multi-module Android project in order to send them off to Sonarcloud at once. I have already checked tons of St...
Demise asked 8/10, 2021 at 16:22
1
I need help, I'm working in the go workspace and there are multiple projects in the workspaces using the common functionality. So, What I did is to make a separate module that contains all the comm...
Premium asked 28/6, 2022 at 9:37
2
Solved
I'm trying to get Go modules working without involving a remote repository.
src is a local directory that contains all my projects, also projects that are written in other languages than Go. For s...
Mustachio asked 3/6, 2020 at 2:48
8
I am trying to create a maven multi-module project. the project is created successfully but when I am trying to use one module as a dependency of another module, it throws an exception. When I crea...
Tread asked 10/7, 2014 at 10:2
6
Solved
I've got a multi module project: The parent POM.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema...
Harms asked 19/1, 2017 at 11:10
2
Solved
I am wondering how to configure the following project layout in IntelliJ:
An Android application
A server back end feeding data to this application
Bean classes that are shared between back end a...
Sedum asked 2/5, 2013 at 13:41
1
At the moment we have 6 Maven modules:
webapp
security
core (provides database access to User)
common
module1
module2
The dependency tree is pretty obvious I think:
webapp depends on everythi...
Hassle asked 23/7, 2013 at 23:35
3
I have a multi-module Maven project:
root
SubmoduleA
src
pom.xml
SubmoduleB
src
pom.xml
pom.xml
.gitlab-ci.yml
Is there any way I can trigger a CI pipeline only on SubmoduleA when someb...
Kingcup asked 22/9, 2016 at 20:26
4
Solved
SpringBoot doesn't recognize RestController from another module in multi module Java application
I've spent quite some time but I can't get past this (configuration) issue.
Technology stack : Java (1.8), Springboot (starter-parent, starter-web), Maven, IntelliJ IDEA
Description: Trying to c...
Peculation asked 10/5, 2016 at 8:35
2
Solved
I have java and kotlin based multi module gradle project. I am trying to setup sonar analysis for the same. I configured sonar at root project and ran analysis with CircleCI. The result in sonarclo...
Parrisch asked 26/5, 2020 at 6:20
1
Solved
I want to read command line arguments in settings.gradle so that i can add only those submodules in include what i am passing command line.
Can we read command line arguments in settings.gradle?
Deandra asked 23/5, 2021 at 14:43
1
Solved
I created spring-boot gradle multi-module project which consisted of 3 modules: controller, service, repository. Main file was situated in Controller-module and named MySpringBootApplication.
I cou...
Henbane asked 13/5, 2021 at 11:38
2
I'm trying to include dagger hilt to my multimodule project with just three modules (app, frameworks_and_drivers, interface_adapters). I followed the hilt documentation https://developer.android.co...
Strawflower asked 12/2, 2021 at 19:49
4
The situation is, I have two Maven multimodule projects with the same structure:
Parent
- Module 1
- Module 2
When I build project 1, I see that parent is built first (order is parent->module...
Watterson asked 21/6, 2012 at 4:40
1 Next >
© 2022 - 2024 — McMap. All rights reserved.