Questions tagged [multi-project]
319 questions
0
votes
2 answers
Plugins in a Multiproject fails at Grails 3.2.11
Configuration
Following the Plugins and Multi-Project Builds section at the Grails 3.2.11 manual, its suppose that I can setup a Multi-project with the next commands in a terminal:
echo "Creating the root folder..."
mkdir test-multi-project
cd…

esalomon
- 85
- 1
- 12
0
votes
1 answer
Identifying the list of projects that have been invoked in gradle
I have a settings plugin that is multi-project aware. It currently applies itself to every project identified in settings.gradle. However, this is a problem because each subproject doesn't have the same configuration, and I control some plugin…

Vivin Paliath
- 94,126
- 40
- 223
- 295
0
votes
0 answers
Gradle Git Push over SSH
I am trying to achieve git clone, git commit, git push operations for multiple projects using this git repo code "Multiproject Git - Gradle Script " .
This code works perfectly with Git Clone operation, But somehow it doesn't work when I do commit…

RKosamia
- 181
- 7
0
votes
1 answer
How do I make a multiproject gradle build in STS eclipse?
I have 2 separate projects in STS Eclipse, both using gradle to build. One is a web application. The other is a data access library that the web application uses. I have the buildship plugin for this.
Normally, I would simply change the project…

DFL
- 173
- 1
- 14
0
votes
1 answer
How to use sbt plugin as a library dependency in a sbt project?
I have an sbt plugin project that uses multi-project build. I would like to use this plugin as a dependency for the other sbt project. I have created a plugin but when I add this plugin to project, I can't seem to get the dependencies to link up…

Jitendera Kumar
- 136
- 1
- 12
0
votes
0 answers
Gradle leaks sourceSet from java rootProject to non-java subProjects
Imagine you have simple multi-project build with one root project and one subproject:
root
|--sub
| `----build.gradle
|----build.gradle
`----settings.gradle
settings.gradle:
include ':sub'
root/build.gradle:
apply plugin:…

Fanick
- 713
- 7
- 25
0
votes
1 answer
Merge two war files gradle and eclipse
Below is my gradle mutli project structure
Root project 'suite'
+--- Project ':common-services-auth'
+--- Project ':common-services-data'
+--- Project ':common-services-rest'
\--- Project ':common-services-web'
Here, data is simple data service,…

Naveen Gupta
- 3
- 1
0
votes
1 answer
Execute a Task of a sub-module of a Gradle multiproject
I have the following multiproject structure:
settings.gradle
rootProject.name = 'toolbox-backend'
include 'toolbox-components-rest'
include 'toolbox-components-executor'
include 'toolbox-components-toolsyncer'
I'd love to create a task in my root…

xetra11
- 7,671
- 14
- 84
- 159
0
votes
2 answers
Firebase subdomain wildcard to one or more project(s)
We are writing a project for schools. We need different subdomains to any school and users should be different. Any email can be registered on different subdomains as other user.
So we want to connect our domain and all subdomains to a project with…

Sezer Ekinci
- 25
- 5
0
votes
1 answer
Gradle Build Fail for mult-projects of spring boot
I am digging through gradle (3.2) multi-projects with spring boot 1.4.2.RELEASE on MACos Sierra 10.12.1.
Here is the project on github:
https://github.com/isian8814/demospring.git
Here is my project structure:
Root project 'demospring'
+--- Project…

isian8814
- 191
- 10
0
votes
1 answer
Gradle Multi-project build - project dependencies and build order
I need to migrate a multi-project build from maven to gradle and maintain the way inter-project dependencies and build order work. I'd like to use the maven plugin in gradle and continue to publish artifacts to both local and remote maven…

David Niquette
- 31
- 5
0
votes
0 answers
How can i build a project that depends on another build result?
I'm working on organizing many Android Studio projects, the build is making with gradle.
My current scheme is:
MainProject :
Dependency1 -(library project)
Dependency2 -(library project)
Dependency3 -(library project)
Dependency4 -(library…

koleanu
- 495
- 5
- 20
0
votes
0 answers
Gradle: war task overrides test tasks in subprojects
I have "test" tasks in subprojects:
apply plugin: 'java'
test {
description = 'Runs tests that are marked as @FastTest.'
useJUnit { includeCategories 'category.FastTest' }
}
If I add "war" task to the root project:
apply plugin: 'war'
, it…

isobretatel
- 3,812
- 7
- 34
- 49
0
votes
2 answers
sbt mulit-project import error
I am trying to setup a multi-project that includes a sub-project that does an import of a class that is defined in a Dependencies.scala file in its project directory. When I run sbt on the sub-project everything is fine but when I run sbt on the…

Antonio Ye
- 51
- 5
0
votes
0 answers
Multi project with sbt
I'm new to sbt and I've been trying to set up a multi-project with it but to no avail.
I've searched and came up with relevant info but was unable to set things up so that it will work.
Here's the structure that I have:
Shared…

Nitzan Tomer
- 155,636
- 47
- 315
- 299