Questions tagged [multi-project]

319 questions
1
vote
1 answer

Gradle multi project recursive task for dependencies

Configuration: I have multi project stricture like that project1: implementation(1st_lvl_module1) implementation(1st_lvl_module2) project2: implementation(1st_lvl_module1) implementation(1st_lvl_module2) …
Vacxe
  • 91
  • 5
1
vote
1 answer

gradle custom task class makes itself uncompilable

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 application) and "p" (for plugin, although I'm not using a plugin…
1
vote
1 answer

Gradle - when is a plug-in preferable over a script?

I'm using gradle to manage a multi-project J2EE build - the end-goal is to produces a series of server package/artifacts that can be deployed to a target server, unzipped, and run. In other words, each artifact contains everything it needs to run -…
MrJohnBBQ
  • 193
  • 7
1
vote
1 answer

Preprocessor directive cannot be put in AND in C#

I need to put some code under a preprocessor directive. such directives can be defined in different projects. My situation is the following: File Constants.cs (which is in project Proj1Dll.csproj) #define DEV ... rest of the code File Page1.cs…
Cristiano Ghersi
  • 1,944
  • 1
  • 20
  • 46
1
vote
1 answer

Unable to pass variables through gitlab bridge to another pipeline

Here is my simple yaml file image: my/docker/image stages: - print - testvarbridge variables: INCOMING_VAR: $ENV_VAR print_these: stage: print script: - echo $INCOMING_VAR - export…
user8072194
1
vote
0 answers

Where do you generate the datasource for the solution in a winforms MVC solution?

I am creating a Winforms MVC project called Cookies. Following guidelines from various searches, I have a solution with 4 separate projects: Cookies-Controller; Cookies-Model; Cookies-View and UseCookiesApplication (used as the starting stub with…
1
vote
1 answer

xdebug across projects in netbeans

Here is the situation.. I have some classes that are in one project... My main code is in another project... and i split this up because i am using GIT as my SCM... So when i debug my main code... i would like to step into the classes and debug…
1
vote
2 answers

Solution/MultiProject Template in VS2010

Looking to make a Solution/Multiproject Template. While I'm aware a solution template does not exist, I've been researching/trying with some of success. (Link from here…
1
vote
0 answers

Way to create a multi-module-project app in Angular (7x) ? For chrome ext

Is there is already a way to create a multi-project angular, so that I would have several index.html for reach project, but build them as one? Having one dist folder with: dist/pr1 dist/pr2 dist/pr3 Basically, I need 3 AppComponents. Why asking?…
ses
  • 13,174
  • 31
  • 123
  • 226
1
vote
1 answer

How To Create Project Group Template Using Visual Studio 2017

The folder does not appear in the template under the solution I used the method in the link https://www.c-sharpcorner.com/article/how-to-create-multi-project-template-using-visual-studio-2017/?
Micheal
  • 90
  • 8
1
vote
1 answer

Angular 7: Multi-projects app, prevent the build of a project to compile the style of another project

This issue will be hard to explain I'm afraid. I'll do my best to explain it. I have 2 projects in my Angular app: "roldos" and "shadra" When I run a prod build for a project: ng build --prod --project="roldos" I'm getting this error What's odd…
Maslow
  • 1,084
  • 9
  • 22
1
vote
1 answer

Maven multi-module shade one module before using it in another module

I have a multi-module Maven build where one module shades a library, and another module uses the shared library. If I run mvn test, this results in package com.example.shaded.javax.el7 does not exist. If I run mvn package test, the compilation and…
tkruse
  • 10,222
  • 7
  • 53
  • 80
1
vote
1 answer

How to attach source code as dependency in java

I have two projects in java. ProjectA is published into artifactory, and projectAB has jar of projectA as a dependency. When I make changes in projectA, in order to completely test it, I need to run tests in projectAB (these tests can not be moved…
a3dsfcv
  • 1,146
  • 2
  • 20
  • 35
1
vote
1 answer

In a Maven multi-module project, how can I run a full build and run a specific plugin on one child?

I have a multi-project maven project. One child only has a specific plugin and I want it to be optional (so not bound to a specific phase). How can I run a full clean install on the entire project and additionally run a project's specific…
balsick
  • 1,099
  • 1
  • 10
  • 23
1
vote
1 answer

Gradle can't find classes in SubProject

I'd like to build MultiProject by Gradle. Flat directories of RootBroject and SubProject. I think it's simple. But Gradle looks like can't find classes in SubProject. How can I do that in this case? Project dirs are like: RootProject +-…
isexxx
  • 727
  • 1
  • 6
  • 23