Questions tagged [multi-project]
319 questions
2
votes
0 answers
multiple projects in a solution each with a wwwroot asp.net 5 mvc 6
My colleague and I will build a mvc 6 multi project solution. So far everything is ok. Now we are on the stage that we have 3 different MVC projects in the solution. Everyone has it's own wwwroot. And in the end every project could stand for it self…

Bella O.
- 43
- 1
- 4
2
votes
1 answer
How do you compile a Gradle sub-project using debug classes from another module
I am working on the evolution of an Apache Ant project to compile it with Gradle, and I have different set of sub-projects.
My goal is to use the output of the main project as a dependency of some of the subprojects. The global configuration is the…

Bastien L
- 21
- 2
2
votes
1 answer
Overriding an Ivy dependencies' revision
I use Apache Ivy for handling library dependency. In my company we have a "core" project which is released/versioned periodically. We then have many "customer" projects which are for a particular client. Each customer project uses a particular…

Mike Q
- 22,839
- 20
- 87
- 129
2
votes
1 answer
Path relative to multi-project build file
I have a project structure like this:
config/
foo/
build.gradle
settings.gradle
bar/
build.gradle
baz/
build.gradle
I want to add the config directory to the classpath in foo/build.gradle so that the subprojects bar…

z0r
- 8,185
- 4
- 64
- 83
2
votes
2 answers
Raise custom event in multi-project
it concerns following: I have two projects which should exists more or less independently from each other. Project one is a kind File System Watcher. The other one cosnists of my UI. The file watcher raises an event, if there is a new file. After…

Kai Krupka
- 137
- 1
- 2
- 8
2
votes
1 answer
SBT: Using code from one project in build process of another
I have a multi-project build with, say, projects A and B (example of build.sbt in root):
lazy val projectA = (project in file("A"))
lazy val projectB = (project in file("B"))
I would like to use code from projectA to generate some .java files and…

Alathon
- 103
- 1
- 6
2
votes
2 answers
runtime output objc[69590] when using CocoaPods with 2 projects
I created 2 xcode projects "mylib" and "myapp"
the project type of mylib is "iOS -> Cocoa Touch Framework"
and the project type of myapp is "iOS -> Application -> Single View Application".
Both of the projects depend on "AFNetworking", so I…

everettjf
- 126
- 9
2
votes
3 answers
Nested projects in multiproject visual studio templates
I need to create a vsTemplate with the following structure.
ECart
- Ecart.csproject
- Modules - Folder
- MVC.csproject
How can we add a project within another project? In this case ECart is a web project and MVC is another project within the…

Bablu Dutt
- 339
- 2
- 5
- 17
2
votes
1 answer
maven release plugin and multiple projects in separate git repositories with Jenkins
I’ve found quite a few hints about the maven-release-plugin, multi-module, multi-project, parent POMs, etc. but they all don’t quite fit what I have:
I have several projects (the reduced case is two: project-common and project-impl) that are…

mirabilos
- 5,123
- 2
- 46
- 72
2
votes
2 answers
Generating single ScalaDoc for multiple sub-projects using Gradle
I'm using Gradle (v2.3) for a project, that contains multiple Scala sub-projects. Generating the ScalaDoc for each sub-project individually works as expected (running gradle :project-a:scaladoc or gradle :project-b:scaladoc).
But how do a get a…

hiddenbit
- 2,233
- 14
- 25
2
votes
1 answer
Setting up a multi-project Gradle build
I'm setting up a multi-module Gradle build for a legacy system at work (replacing the current Ant build). However, I'm new to Gradle, and I'm not sure what's the best way to do it. And I want to do it right, because this build script will be around…

jqno
- 15,133
- 7
- 57
- 84
2
votes
0 answers
gradle - 'compile project(':X')' and defaultTasks?
Two projects in separate, parallel directories:
/Root/A/build.gradle
/Root/B/build.gradle
A is dependant on B:
// in /Root/A/build.gradle:
dependencies{
compile project(':B')
// ...
}
Both files define defaultTasks:
defaultTasks…

hauron
- 4,550
- 5
- 35
- 52
2
votes
1 answer
sbt subproject cannot find it's dependencies
I have a project tree consisting of three projects A, B and C
B depends on A, and C depends on both A and B.
A and B are checked out in C's lib/ and both build fine using sbt compile
However, when I compile C, the build of B fails, complaining that…

A.J.Rouvoet
- 1,203
- 1
- 14
- 29
2
votes
1 answer
Using multiple IWizard implementations in ProjectTemplates
I am creating a multi-project solution template for my organization that requires both Nuget packages to be installed and some custom parameters to be set using a Windows Form upon creation. I am deploying it using a VSIX.
I have both these features…

ztam
- 23
- 2
2
votes
1 answer
Gradle Multi Project Dependencies with Multiple Lib folders
I have a project that is laid out like the following:
abc/
abc-core/
abc-core-actions/
abc-core-actions-a/
src/
abc-core-actions-b/
src/
abc-core-package/
src/
…

Welsh
- 5,138
- 3
- 29
- 43