In Gradle multi-module project, how to tell Gradle child module not to build any libs/jars and other dependencies ? Is there some alternatives to maven <packaging>pom in Gradle?
In Gradle multi-module project, how to tell Gradle child module not to build any libs/jars and other dependencies ? Is there some alternatives to maven <packaging>pom in Gradle?
So as a result i can specify jar.enabled = false and module will not produce any artifacts, however you can still perform custom tasks like compile/copy in this module.