multi-project Questions
4
Solved
I would like to create a clean archtecture for my JavaScript project. The project consists of one Node.js server and two separate Angular.js front-ends with different purposes. For building t...
Dovap asked 28/5, 2016 at 23:43
3
Solved
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 p...
Confect asked 14/1, 2013 at 10:29
0
The following build.sbt file works, but it defines the dependencies of all subprojects:
name := "myproject"
version := "1.0"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
"org.scalafx"...
Methodology asked 16/5, 2016 at 15:5
1
Solved
In my root build.gradle file I apply common tasks for all components:
apply from: rootProject.file('common/component.gradle')
In subproject i define componentTitle:
ext {
componentTitle = 'app...
Tatro asked 29/4, 2016 at 21:17
2
Solved
I am trying to use a Grails Project as a Plugin to basically have my domain classes in the Plugin and then use them in multiple Grails projects.
I've done this:
grails create-app web
grails crea...
Tenstrike asked 9/3, 2016 at 18:48
2
Solved
I have a Gradle Project in Eclipse consisting of multiple subprojects. I currently have subprojects A, B and C.
Project A should have access to Project B. Project B should have access to Project C...
Otherness asked 20/1, 2016 at 13:24
1
Solved
In my multiproject I am running test task on root project and expecting that it will run test task on subprojects and produce a single test report. What I observe is that it never runs test task on...
Gredel asked 22/1, 2016 at 17:59
1
Solved
I have a dependency problem and I do not know how to solve it.
I have a project A, B and C.
A needs B and C
B needs C
My directory structure looks like this:
A
|-settings.gradle
|-build.gradle...
Plague asked 4/9, 2015 at 6:7
1
Solved
I have two Gradle projects with the following directory structure:
/baseDir
/first
/first/build.gradle
/second
/second/build.gradle
Both firstand secondare on the same hierarchy. From the ...
Gilbertina asked 7/2, 2015 at 15:50
1
Solved
we're using Play framework 2.3.7 and have set up a multiproject with sbt (sbt version 0.13.5), which is consisting of four modules.
In the build.sbt file of the project root we define the modules:
...
Vicenta asked 16/1, 2015 at 15:0
2
suppose the following project. the master project is a multi-project, however every part of the larger project can be developed individually or mixed in:
/master/build.gradle
/m1/build.gradle
/m2/...
Chaddy asked 20/1, 2014 at 16:29
1
I have a multi-project script:
dependencies {
compile '...'
...
compile project(':component1')
runtime project(':component2')
}
I need to copy folder "bin" from component1 and component2 in...
Renegado asked 15/1, 2014 at 12:46
2
Solved
I'm trying to understand how should I approach the following project setup:
┌Top Android Project
│
├── Project 1 - (Pure Java Modules)
│ │
│ ├── Module A1
│ ├── Module B1
│ :
│ └── Module Z1
│
├─...
Huang asked 8/7, 2013 at 21:55
1
Solved
In this weird case that seems to involve xsbt-web-plugin, I get the error
unresolved dependency: play#play-json_2.10;2.2-SNAPSHOT: not found
when loading the server subproject. The dependency and...
Phyllome asked 18/6, 2013 at 19:59
2
Solved
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.gr...
Minier asked 3/9, 2012 at 10:40
1
Solved
I have an identical problem to this Gradle Multi-Module Project Setup but I have to use project compile dependencies to build and cannot use the library(jar) dependencies solution that was given as...
Cespitose asked 28/11, 2012 at 0:14
1
Solved
We have an old project that is set up like this:
.
├── customizationProject
│ ├── ejb
│ └── services
├── projectA
│ ├── ejb
│ └── shared
├── projectB
│ └── ejb
└── projectC
├── ejb
└──...
Johnsonian asked 9/8, 2011 at 11:23
1
Solved
At my new gig, they use Ant and cannot be persuaded to move to Maven.
I've looked everywhere for a decent example of how a multi-project ant build system should be assembled. The apache site falls...
Nazar asked 8/4, 2010 at 0:13
1
Solved
EDIT: I have submitted a bug report and Microsoft have acknowledge that it is a bug. There is currently no ETA on when it will be fixed.
Bug Report: https://connect.microsoft.com/VisualStudio/fee...
Mimetic asked 6/12, 2008 at 5:6
5
Solved
We are using trac and are really satisfied with it. However, out of the box, trac is best suited for single-project environments only. I'd be interested to hear about the various approaches people ...
Stuffing asked 6/11, 2008 at 9:20
© 2022 - 2024 — McMap. All rights reserved.