Gradle multi project build – parent pom like structure
When you come from a maven background most probably you have been used to the parent pom structure.
Now when it comes to gradle things are a little bit different.
Imagine the scenario of having a project including the interfaces and various other implementations.
This is going to be our project structure.
multi-project-gradle -- specification -- core -- implementation-a -- implementation-b
The specification project contains the interfaces, which the implementations will be based upon. The core project will contain functionality which needs to be shared among implementations.
The next step is to create each project inside the multi-project-gradle.
Each project is actually a directory with the builde.gradle file.
plugins { id 'java' } repositories { mavenCentral() } dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' }
Once done you need to do the linking between the parent project and the child project.
to do so you create the multi-project-gradle/settings.gradle and include the other projects.
rootProject.name = 'com.gkatzioura' include 'specification' include 'core' include 'implementation-a' include 'implementation- b'
Now if you set the build.gradle file for every sub project you’ve just realised that you include the junit dependency and the mavencentral repository everywhere.
One of the main benefits on using multi-project builds, is removing duplication.
To do so we shall create the multi-project-gradle/build.gradle file add the junit dependency and the maven central reference there.
subprojects { apply plugin: 'java' repositories { mavenCentral() } dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' } }
Now we can add our dependencies to each project and even specify the dependencies needed from the sub-projects.
For example the core project uses the specification project
dependencies { compile project(':specification') }
and each implementation project uses the core project
dependencies { compile project(':core') }
You can find the project on github.
Published on Java Code Geeks with permission by Emmanouil Gkatziouras, partner at our JCG program. See the original article here: Gradle multi project build – parent pom like structure Opinions expressed by Java Code Geeks contributors are their own. |
Is it possible to use the multiproject build.gradle file from a project located in a different repo than where the multiproject is?
How to build without libs but compile?
dependencies {
compile project(‘:core’)
}
dependencies {
[compile?] project(‘:libs’)//not for compile in jars/wars but need to compile in IDE!
}