I’m just learning gradle. I thought I’d try to convert an existing project from ant to gradle as an experiment. It’s mostly going well (the project isn’t terribly complicated).
One thing I haven’t been able to figure out is conditional compilation. There are a couple of classes that should only be compiled if a particular commercial library is available.
Basically, if “commercial.jar” is in the projects “lib” directory, then compile “src/main/java/my/extensionClass”. If commercial.jar isn’t in the lib directory, just skip that class.