Compile gradle with two configuration

247 Views Asked by At

I have a gradle project. This project contains many modules. I would like to make 2 differents executables with some module activated or not. I have one executable with module1 and module2 like follow:

dependencies {
    compile project(':module1')
    compile project(':module2')
}

I would like a executable with module1 and module2, and another one with only module1.

For generate an executable I used launch4j and shadowjar.

How I can do that?

Thanks

1

There are 1 best solutions below

4
On

You could possibly use my java-flavours-plugin

plugins {
    id "com.lazan.javaflavours" version "1.2"
}
javaFlavours {
    flavour 'version1'
    flavour 'version2'
}
dependencies {
    compile 'some:common-dependency:1.0'
    version1Compile project(':module1')
    version2Compile project(':module2')
}

Each flavour (eg version1 & version2) will have a jar task, the jar could be consumed by downstream modules/tasks. You can also reference sourceSets.version1.runtimeClasspath etc.

Note: The plugin supports flavour specific java sources and resources. Not sure if you need that feature.