Questions tagged [multi-project]
319 questions
0
votes
0 answers
Eclipse group multi project gradle as one project
So I imported a gradle project using File->Import->Gradle->Existing gradle project. But that project is a multi project gradle. So it automatically created a lot of eclipse projects and now in my package explorer there are a lot of projects.Is there…

prgg
- 43
- 8
0
votes
1 answer
How to create multi project fat jar as bundle of some libraries with buildSrc
First of all, sorry for my poor english.
Goal
I want create multi project containing some custom libraries as subproject with gradle.
For centralized dependency version control, using buildSrc and setting versions (spring-boot, detekt, ktlint…

lastruggling
- 1
- 3
0
votes
1 answer
how to add log4j2 file multi maven project
I am working on Multi Maven Project which has structure like below -
TestRepo (Maine Project)
-APITests
-Shared libraries
-FrontendTests
Now Shared Libraries is common to both API Tests and Frontend Tests
I have added log4j for all the…

Ashu123
- 352
- 2
- 6
- 19
0
votes
1 answer
How can I get in a multi-project gradle springoboot application a library jar in my classpath?
I’m working on a multi-project gradle springboot application using IntelliJ. I’m using Gradle for the dependencies and jars includes.
The main module (springboot) includes the other two, of which one of these uses an external library, out of our…

Marc
- 1
- 1
0
votes
1 answer
Angular library project build fails in multi-project workspace - cannot find namespace
I have the following Angular multi-project file structure:
-AngularMultiProject
-projects
-mobile-app
-shared-lib
-web-app
-ViewModels
-Common
-myviewmodel1.d.ts
-myviewmodel2.d.ts
The shared-lib project and…

Weissvonnix
- 731
- 7
- 23
0
votes
1 answer
Publish individual project from maven multi-project setup
I have a maven multi-project setup, where one of the projects represents the "client API". Other applications/projects interacting with the service shall include the client API as dependencies.
The pom.xml of the client API references the parent…

Hank
- 4,597
- 5
- 42
- 84
0
votes
0 answers
Passing variable in multi project git pipeline
YML of my trigger project:
trigger:
variables:
CODE_SHA: ${SHA}
stage: test
trigger:
project: dummy
branch: dump
strategy: depend
YML of my triggered project:
build:docker3.7:
stage: build
retry: 2
script:
- echo…

Isha Nema
- 289
- 5
- 16
0
votes
1 answer
How to add a dependency from the main project to the subprojects in gradle/groovy?
Given the following project structure:
.
├── src
│ └── proto
│ └── ....
├── build/generated/..
│ ...
├── proj1
│ ├── src
│ │ └──...
│ └── build.gradle
├── proj2
│ └── person-service
│ ├── src
│ │ └──...
│ └──…

Dávid Tóth
- 2,788
- 1
- 21
- 46
0
votes
1 answer
Asp.net MVC multiple web projects in solution
I have a solution having two MVC Web Projects.
In main project, AdminController is works as expected(When I hit Admin/Action it looks for view in main project and work accordingly).
In second project I have SiteController. When I hit Site/Action it…

Jayesh Suthar
- 28
- 7
0
votes
1 answer
Is it possible to have multiple git projects in one solution?
I have a relatively comprehensive solution that contains about 20 projects. One of the projects is "Utils", which I would like to have shared for other solutions. Unfortunately, if I added this project to another solution as a linked project, then…

vesi
- 53
- 1
- 4
0
votes
1 answer
Gradle Multi-Project Builds vs Composing builds
I am a bit confused about the differences of these two strategy.
Which is the guideline if I would like to share a java library among different java Apps ?
Regards,
S.

Stefano Bossi
- 1,138
- 1
- 9
- 19
0
votes
1 answer
Multi-project pipelines that can launch each other
On Gitlab-CI, I have two projects that work together. Sometime only project A is updated, sometime only B and sometime A+B (when the releases are linked). I would like to create a pipeline on each project that launches one project and trigger the…

DeepBlueMussel
- 1
- 1
0
votes
1 answer
Gradle sub-sub-project build configuration
I'm trying to write a gradle build with 3 modules (A,B,C). A depends on B and B depends on C (A->B->C). All modules lie in the same parent directory.
All off the modules can either be present in the workspace or not, this is why my settingsB.gradle…

Ludi
- 433
- 2
- 16
0
votes
1 answer
Gradle can't find local dependency project
I have this Gradle project:
G:\!Modding\jtta-primitive-lite
And it should have this dependency (also a Gradle project):
G:\!Modding\jtta-core
jtta-primitive-lite should depend on jtta-core project (without including)
I made like this for…

Timofey Kostenko
- 3
- 2
0
votes
1 answer
How do I add classes produced by a subproject to WEB-INF/classes directory of WAR file in Gradle
I have a multi-project Gradle script.
It should put compiled class files produced by sub-projects into WEB-INF/classes folder.
UPDATE:
I tried this code for the war task:
war {
subprojects.each { subproject ->
…

isobretatel
- 3,812
- 7
- 34
- 49