RTC Java API - Adding subsets to enterprise build
I'm trying to add a subset to an enterprise build directly from a custom ant build task (using the buildtoolkit). The buildtoolkit being very similar to the standard java API client works in most aspects. But I'm having trouble with this line:
return (IBuildableSubsetClientAPI) repo.getClientLibrary(IBuildableSubsetClientAPI.class);
It seems that this class is not accessible from the buildtoolkit, as I get the following exception (even though I include the correct dependencies):
java.lang.NoClassDefFoundError: com.ibm.team.enterprise.buildablesubset.client.IBuildableSubsetClientAPI
Anybody can help me with this?