Questions tagged [multi-project]

319 questions
0
votes
0 answers

Auto-reload inline plugin changes in Grails 3

I'm using Intellij Idea 15 and Grails 3.0.9 and auto-reloading of main application is working without many problems, but I'm unable to make auto-reloading work for inline plugin (or multi project in gradle as it's called now I think). Is there any…
Eylen
  • 2,617
  • 4
  • 27
  • 42
0
votes
0 answers

structure for applying Identity on a multi-project solution

I've been working on a Web API solution that's separated on various projects, one of each is the API itself which contains the controllers and Views but all the Business Logic is done in all the other projects (being one of them responsible for all…
FabioG
  • 2,936
  • 3
  • 31
  • 50
0
votes
1 answer

How to create multiproject with buck?

For example I have two (A that generates apk, B that generates aar) fully configured projects (.buckconfig, .git and so on). What I need to do to make my project A depends on B? For example I want to be able to enter B project directory and type…
seroperson
  • 123
  • 1
  • 7
0
votes
1 answer

Set changing scala project dependency in Intellij IDEA 14 (for code completion and inspection)

I'm currently developing a multi-project Scala application in IntelliJ IDEA 14 with SBT. Projects have dependencies (dependency projects) between them and I need IntelliJ IDEA to inspect code from all projects, at least, from the projects I use from…
vicaba
  • 2,836
  • 1
  • 27
  • 45
0
votes
1 answer

UnitTest with gradle, when test Infrastructure is in some other project in src/test/java folder

There is two java projects A and B, the build-engine is gradle. That is a multi-project and A depends on B A: build.gradle ... dependencies { compile project (':B') } ... B has core code in src/main/java and test code in src/test/java. Also in…
Mark
  • 17,887
  • 13
  • 66
  • 93
0
votes
1 answer

Gradle resolve ext properties in depedencies for multi-project

I have the following multi-project structure (only the important parts are shown): - project - build.gradle (file) - settings.gradle (file) + module1 (dir) + module2 (dir) build.gradle: ext { groovyMajorVersion = 2.4 …
Aliaksandr Kazlou
  • 3,221
  • 6
  • 28
  • 34
0
votes
1 answer

Eclipse Gradle multiprojects

I've just been through the ringer trying to get this to work so I thought i would share my experience. The problem (so I can answer it QA style): I have a flat project structure where the sub-projects are siblings of the root…
HankCa
  • 9,129
  • 8
  • 62
  • 83
0
votes
1 answer

Merging two ASP.NET MVC projects together which use ASP.NET Identity

We have two ASP.NET MVC projects which both use ASP.NET Identity, and we need to merge them into one single project. We've got a solution made which contains both projects, and they both use the same database for login information and the same…
0
votes
1 answer

Gradle: Common Zip task for every subproject

I have a multi-project gradle build, where all subprojects of root project have common zip task. They should zip some source, depending of the subproject's settings. First, I configured it in parent build.gradle: subprojects { subproject -> …
madhead
  • 31,729
  • 16
  • 153
  • 201
0
votes
0 answers

Gradle multi repository/separately deployable projects

I have a setup of (at least) two development projects (A and B) and a shared API A is core and implements the API B is integration and uses the API The projects are separate in that I can deploy each separately. They are also in two separate…
mathiasbn
  • 881
  • 11
  • 21
0
votes
1 answer

Gradle specify settings dir path for a sub project

In a multi-project build I have a module that in itself is composed of two sub-projects. If I just want the option of building the top-level module but also ensure both the sub-projects within it are also built, how I do achieve this? include…
Paddy
  • 3,472
  • 5
  • 29
  • 48
0
votes
0 answers

Gradle how to include root of multi-project build with a buildSrc folder?

I am doing a prototype of a specific feature, which in turn uses a higher Gradle version than our project uses (we are migrating, but will take time). So I have a separate gradle wrapper but in order to complete the task I need to refer to lots…
Paddy
  • 3,472
  • 5
  • 29
  • 48
0
votes
1 answer

Why build errors disapear after reopen VisualStudio 2010

I'm currently working on a Multi-Project solution in VisualStudio 2010 which has like 20+ projects in VB.net & C#.net. Sometimes when I build my project I get like 100 similar errors for example "an object reference is missing" in both c# and vb…
0
votes
0 answers

Gradle - dependencies order of addition

I have one real issue with defining order of dependencies, eg. I have a gradle dependency which looks like this: configurations { defaults configs } task extractDefaults(type: Copy) { from { configurations.defaults.collect {…
0
votes
1 answer

best practice for multi-project c# solution

I am maintaining a C# solution consisting for multi-project. It's usually no problem altering any project except on project z, which gets referenced in a few other project in the solution and also in project a and b. Project a uses the main GUI…
gg89
  • 372
  • 3
  • 11