Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

I am trying to create a template for projects. I have followed the Microsoft Tutorial on how to create project templates with multi projects: Link below: https://learn.microsoft.com/en-us/visualstudio/...
user16592152's user avatar
2 votes
0 answers
44 views

My query is while switching projects how we change python interpreter to that specific project .venv shown in bottom right & the (.venv) in terminal? Situation I have project1 with .env1 as venv I ...
yashpreet's user avatar
1 vote
0 answers
58 views

We run our projects with Java 17, Grails 6.2 and spring-boot-devtools configured to restart the application every time we save a file. The project structure uses the Gradle buildSrc feature to ...
Gianluca Sartori's user avatar
1 vote
1 answer
50 views

I have two modules in sbt: top and common. top depends on common, and common has some configs in src/main/resources/application.conf, that are getting overridden in src/test/resources/application.conf....
Dima's user avatar
  • 40.6k
0 votes
1 answer
144 views

I have a multi pipeline project setup, where the e2e project is defined as a trigger job in the client/server projects. My goal is to not run the e2e stage on scheduled pipelines. In my gitlab-ci.yml ...
mih-ana's user avatar
-2 votes
1 answer
165 views

I am trying to build a basic multi-project with gradle as suggested at Structuring Projects with Gradle Project structure is as follows: Main.java in test subproject is as follows: package org....
Manish's user avatar
  • 1,525
0 votes
1 answer
171 views

I am facing an issue with dependency injection in my Spring Boot Application. While testing Project C, I am encountering a bean not found error for com.project.ProjectA.repository. I have included ...
user24845522's user avatar
0 votes
0 answers
298 views

I'm trying to create some dotnet templates for dotnet cli using template.json. This template would contain multiple projects and some of them would be shared with other templates. So those shared ...
Papapinguy's user avatar
1 vote
1 answer
1k views

I'm trying to build an executable jar to run my Spring application. I uploaded an MWE here: https://github.com/qnguba/testGradle1 (note that the MWE contains only the subproject 'main' within the '...
qnguba's user avatar
  • 11
0 votes
1 answer
396 views

I tried to add the proxy and Rewrite the URL path according to the angular documentation guidelines, but without success, the docs I have followed here: https://angular.io/guide/build#rewrite-the-url-...
salvo720's user avatar
  • 521
0 votes
1 answer
188 views

I have a very specific way I need my project to work. I have .bat files being committed to project A with a collection of arguments that need to be actioned by a Python script on project B. I need ...
Connor's user avatar
  • 3
1 vote
2 answers
491 views

We have decided that even though our data layer is in a separate Azure project, we want to include the .csproj file in our solution so that we are able to debug through API and Datalayers. We do not ...
Velvet's user avatar
  • 13
0 votes
1 answer
159 views

I am having trouble getting Gradle HotSwap to work reasonably with IntelliJ IDEA. We have a Java setup which consists of some basic modules, then some country variants that use these basic modules and ...
Darkmessage's user avatar
0 votes
1 answer
304 views

I'm trying to organize my subprojects to specify common dependencies at build.gradle.kts(it is kotlin-based) in the root project. Let's say I have 5 subprojects, A, B, C, D, E, without root project. ...
chl's user avatar
  • 377
16 votes
0 answers
7k views

I have a multi-project Kotlin project in IntelliJ IDEA. It compiles and runs fine, both from the IDE and from the console. However, there's a problem with my gradle files: the IDEA complains about &...
digory doo's user avatar
  • 2,337
0 votes
1 answer
574 views

How can I exclude certain subprojects in my multi-project gradle build. I want to exclude a apply plugin call by querying a property of the subproject. The build.gradle of my parent project looks like ...
paddy3k's user avatar
  • 149
0 votes
0 answers
119 views

I am building a template in Visual Studio. The template is made of 3 C# projects. The names of the projects are as follows: name of the solution I create from my template followed by .Project1/....
Herkules1001001's user avatar
2 votes
0 answers
1k views

I have a lib created in a Nx workspace that I started with very old version (can't remember which one). The lib has the following file and folder structure: Now, in a new Nx workspace for new lib I ...
smartmouse's user avatar
  • 14.5k
2 votes
1 answer
243 views

currently I'm working on a java project which is built by gradle. The project consists of an web-api micronaut subproject and some library subprojects. See output .\gradlew -q projects Root project '...
Pace17881's user avatar
0 votes
2 answers
2k views

I'm currently dealing with a problem within my Azure DevOps pipeline where I'm trying to run and build a pipeline for repo 'RepoX', whereafter the Dockerfile tries to use the '.csproj' of repo 'RepoY'....
user20291437's user avatar
1 vote
0 answers
468 views

I have one solution, and two projects inside the solution (Project1 & Project2). They both are console programs. Inside Project1 we have functions.h with function "foo()" and functions....
Givikap120's user avatar
1 vote
2 answers
1k views

Let's say I am building an event-driven architecture, with Python microservices. I have a stream package handling all interactions with the streaming platform. It is supposed to be used internally ...
acmoune's user avatar
  • 3,473
1 vote
0 answers
525 views

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 ...
prgg's user avatar
  • 63
3 votes
0 answers
106 views

We've got a multi-project pipeline: Project A: ... stages: - build - test build: stage: build some long building job setup release testing: stage: test allow_failure: false only: - /^\...
Andrew's user avatar
  • 31
0 votes
1 answer
505 views

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 ...
lastruggling's user avatar
0 votes
1 answer
433 views

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 ...
Ashu123's user avatar
  • 352
1 vote
0 answers
507 views

I am new with gradle and I don't know how to resolve this issue. I have two gradle projects structured as follow: ./api /build.gradle.kts /settings.gradle.kts ./util /build.gradle.kts /...
Alex's user avatar
  • 11
-1 votes
1 answer
782 views

If this already has an answer, I haven't managed to find it. I have spent many hours getting this far, before throwing in the towel and asking here! When it comes to Maven, I would describe myself as ...
John Ormerod's user avatar
4 votes
1 answer
2k views

I know you can access different modules (included using include) in a project via org.gradle.api.Project#getSubprojects(), and I know you can get the name and directories of separate builds that have ...
Brad Mace's user avatar
  • 28k
1 vote
1 answer
3k views

I've an angular application a-app in 10.0.6, but I need to include it into an angular multi-project structure. In this multi-project structure, I have a b-app application. Angular multi-project ...
georgeos's user avatar
  • 2,531
0 votes
1 answer
683 views

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 ...
Marc's user avatar
  • 1
5 votes
0 answers
1k views

Since some Gradle version, it doesn't create "flat projects" any more. Instead you always get an empty "wrapper" project with the actual project name ("myproject") which ...
MrSnrub's user avatar
  • 1,265
1 vote
0 answers
452 views

I created a settings file which has a rootProject.name followed by include statements for each microservice. But during build with the buildpack I get ! failed with status code: 145 [builder] unable ...
drgeb's user avatar
  • 11
0 votes
1 answer
536 views

I have the following Angular multi-project file structure: -AngularMultiProject -projects -mobile-app -shared-lib -web-app -ViewModels -Common -myviewmodel1.d.ts ...
Weissvonnix's user avatar
0 votes
1 answer
126 views

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 ...
Hank's user avatar
  • 4,736
1 vote
0 answers
2k views

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: ...
Isha Nema's user avatar
  • 499
0 votes
1 answer
873 views

Given the following project structure: . ├── src │ └── proto │ └── .... ├── build/generated/.. │ ... ├── proj1 │ ├── src │ │ └──... │ └── build.gradle ├── proj2 │ └── person-...
Dávid Tóth's user avatar
  • 3,315
0 votes
1 answer
1k views

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 ...
Jayesh Suthar's user avatar
0 votes
1 answer
320 views

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 ...
vesi's user avatar
  • 53
1 vote
1 answer
1k views

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's user avatar
0 votes
1 answer
278 views

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 ...
DeepBlueMussel's user avatar
0 votes
1 answer
1k views

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 ...
Ludi's user avatar
  • 473
0 votes
1 answer
1k views

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 (...
Timofey Kostenko's user avatar
0 votes
1 answer
437 views

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....
isobretatel's user avatar
  • 3,968
1 vote
1 answer
600 views

Configuration: I have multi project stricture like this: project1: implementation(1st_lvl_module1) implementation(1st_lvl_module2) project2: implementation(1st_lvl_module1) implementation(...
Vacxe's user avatar
  • 111
1 vote
1 answer
384 views

I'm trying to write a custom Gradle task class and use it in another subproject. I'm having problems tying the build together. In this example, I have named the subprojects "a" (for ...
Martin Geisse's user avatar
0 votes
0 answers
625 views

I have a project structured like NetworkASCtoSocket ./client ./server ./shared What i want is being able to compile a fat jars consisting of client+shared+dependencies of both and respective for ...
sealofthetime's user avatar
0 votes
1 answer
203 views

I have the following file structure: application1 |pacakge.json |src ||file1.ts widget-lib |package.json |src ||file2.ts ||index.ts .\widget-lib\src\index.ts bundles and reexports everything in ...
Ivan Koshelev's user avatar
3 votes
2 answers
4k views

I have the following multi-module project structure. Root project 'reports-be' +--- Project ':auth' +--- Project ':builder' | +--- Project ':builder:base' | \--- Project ':builder:reporting' \--...
Vladimir's user avatar
  • 565
0 votes
1 answer
298 views

I am trying to build an RPM Centos 7 package from java source via Gradle. I have a java multi project environment with a shared library and a Java application. Here is the filesystem: |-- automation ...
Stefano Bossi's user avatar

1
2 3 4 5
7