in ant/src/main/java/org/apache/commons/weaver/ant/WeaverSettings.java [150:158]
public void setClasspath(final Path classpath) {
if (isReference()) {
throw tooManyAttributes();
}
if (this.classpath != null) {
throw new BuildException("classpath already set");
}
this.classpath = classpath;
}