How do I conditionally compile individual classes?

Hi,

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.

Pointers, please?

Darn. I was hoping this was going to be an easy question.

Try something like:

if (...) { sourceSets.main.java.exclude "**/my/extensionClass.java" }

Sorry. Groovy novice too. More web surfing was unhelpful.

What’s a reasonable test for the equivalent of the ant construct:

<available classname=“com.company.api.Class” property=“companyAvailable”>

<classpath refid=“build.classpath”/>

</available>

I did eventually figure this out.

‘’’’ task checkThirdPartyLib() {

doFirst {

try {

Class.forName(“org.example.third.party.Library”)

} catch (Exception e) {

println “Third party library classes unavailable, skipping XYZ”

sourceSets.main.java.exclude ‘com/project/extension/XYZ.java’

}

} } compileJava.dependsOn checkThirdPartyLib ‘’’’

The check* task excludes the classes that depend on the third party library if some exemplar class from that library can’t be found on the classpath.