Top "Multi-project" questions

Gradle multiproject define dependency on root project

I have a multi project gradle build, configured in this way: root | |---- projectA | |---- projectB I want to declare …

dependencies gradle multi-project
Gradle - Recursive subprojects

Assume I wanted to use Gradle with a project structure such as: RootProject \-- SubProjectA \-- SubProjectAA \-- SubProjectAB How …

gradle multi-project
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 …

javascript node.js angular webpack multi-project
Gradle: How to configure multiproject setup with side-by-side projects

We have an old project that is set up like this: . ├── customizationProject │   ├── ejb │   └── services ├── projectA │   ├── ejb │   └── shared ├── projectB │   └── ejb └── projectC ├── …

java build gradle multi-project
How to discover Jenkinsfile in subfolders

I have a project with two folders, that are independent, and needs separate builds in Jenkins (running v2.74) My structure …

jenkins-pipeline multi-project
Gradle: How can I copy folder from another project in multi-project script?

I have a multi-project script: dependencies { compile '...' ... compile project(':component1') runtime project(':component2') } I …

dependencies gradle multi-project
Gradle multi project distribution

I'm trying to make a dist of a multi project build. The root project looks something like this: apply plugin: …

package gradle multi-project
How to assemble a multi-project ant build system

At my new gig, they use Ant and cannot be persuaded to move to Maven. I've looked everywhere for a …

ant build dependencies ivy multi-project
How to include projects in multiproject build from master directory in Gradle?

Lets have this structure I am in subproject1 how to write my settings.gradle file to include subproject1 and subproject2 …

gradle settings project multi-project