Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle alternative to maven <packaging>pom

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?

like image 953
uptoyou Avatar asked Oct 24 '25 03:10

uptoyou


1 Answers

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.

like image 105
uptoyou Avatar answered Oct 26 '25 19:10

uptoyou