Questions tagged [multi-project]

319 questions
6
votes
1 answer

Multiple Blazor Projects in the Same Web Application

I want to separate a large development project into smaller projects, so I can manage and build separately. This is so that my team to work on separate parts of a Web application by working on separate projects. I want to have Multiple Visual…
Kobra
  • 313
  • 1
  • 15
6
votes
2 answers

How to create "Multi Project Template With Custom Wizard" in Visual Studio 2017

I'm looking for help on making a multi project template (i.e. a deploy-able solution that contains multiple projects) with a custom wizard (to enable custom parameters to be entered). I've followed "How to: Create Multi-Project Templates" to make…
6
votes
2 answers

How to use variables in a multi-project gradle build system?

I have a multi-project structure managed with gradle. All the java sub-projects have this jar block: def main_class = "foo.Main" jar { manifest { attributes 'Main-Class': main_class } } So I decided that I'm going to move the jar…
Zsolt
  • 1,464
  • 13
  • 22
6
votes
3 answers

Gradle multi-project custom build.gradle file name

I have a multi-project Gradle build, which is currently configured through a single build.gradle file. There are over 70 modules in this project, and the single (gigantic) build.gradle file has become cumbersome to use, so I'd like to split it into…
Yevgeny Krasik
  • 253
  • 4
  • 9
6
votes
2 answers

Define modules list which shall be built in Maven multiproject build

I would like to use Maven -pl option to define which specific modules shall be included into reactor. The option works if list of module's paths is provided. Unfortunately, providing module's artifactIds is not working at all. Sonatype: Maven: The…
Piotr Oktaba
  • 775
  • 1
  • 4
  • 14
6
votes
3 answers

Build multiproject Gradle on Jenkins

I have a Gradle multiproject hosted in Mercurial repo. I would like to setup my Jenkins in such a way, that if I commit changes into only 1 subproject, then only that subproject will be built and published to my Nexus repo. Can somebody give me a…
Nikem
  • 5,716
  • 3
  • 32
  • 59
6
votes
2 answers

Gradle multi-project, change default build filename (build.gradle)

We have a multiproject with a settings.gradle and no build.gradle in the root project. The default behaviour of gradle is just look up the settings.gradle file on the top dir and read the build.gradle for every project defined before. My problem is:…
lqbweb
  • 1,684
  • 3
  • 19
  • 33
5
votes
0 answers

SBT: how to exclude one sub-project from one aggregated task

I have a bunch of sub-project that I define as follows (actually generated by a project/meta.sbt): lazy val Top = (project in file(".")) .aggregate(common, p1, p2, tests, scripts) .dependsOn(common, p1, p2, tests, scripts) lazy val common =…
Eli Barzilay
  • 29,301
  • 3
  • 67
  • 110
5
votes
2 answers

How to execute a Gradle task once at the end of subproject tasks

I am working with the following project structure Project |-Subproject1 |-Subproject2 |build.gradle |settings.gradle The submodules are included in the settings.gradle and configured in the build.gradle of the root project. I have 3 tasks to…
n3utrino
  • 2,361
  • 3
  • 22
  • 32
5
votes
2 answers

Multi Project Solution template

I am in the process of creating multi-project solution template having web application,Desktop,few class libraries and unit test project. I built the basic container and packed it as VSIX container. When I install the VSIX container,I can the .zip…
5
votes
2 answers

SBT/Play2 multi-project setup does not include dependant projects in classpath in run/test

I have following SBT/Play2 multi-project setup: import sbt._ import Keys._ import PlayProject._ object ApplicationBuild extends Build { val appName = "traveltime-api" val appVersion = "1.0" val appDependencies = Seq( //…
arturaz
  • 767
  • 6
  • 18
4
votes
1 answer

Gradle multi-project parallel build consumes 100% of CPU time

System info Software info OS: Java: OpenJDK 12.0.2 Gradle: 5.6.2 The issue Building Gradle multi-project with parallel builds enabled consumes almost all the CPU time. PC is not interactable during the build process Steps to reproduce 1. git…
Ivan Kalinin
  • 215
  • 1
  • 10
4
votes
1 answer

Android App Bundles - Is it possible to upload multiple app bundles in one release?

We have a legacy project, that consists of two projects: one for phones. one for tablets. Each project has it's own structure, it's own classes, resources, etc. Both have the same package name, are signed with the same keystore and are uploaded…
4
votes
2 answers

SBT add projectID to logs in multiproject build

In an SBT multi-project build, when you run a task on an aggregator project and it runs the tasks in every aggregated subproject then all the logs from each subproject get output together in one big stream. This makes it hard to debug build issues…
gnicholas
  • 2,041
  • 1
  • 21
  • 32
4
votes
1 answer

Webpack - Uncaught ReferenceError: webpackJsonp is not defined

I'm developing a project that has two Angular 4 application and I'm having some problem configuring Webpack (3.5.2). Im getting this error in just one of the applications: Uncaught ReferenceError: webpackJsonp is not defined at…
brevleq
  • 2,081
  • 10
  • 53
  • 97
1 2
3
21 22