On 2009-05-26, Кирин Евгений Николаевич <kirin...@energodata.ru> wrote:
> Hello! > Please help me to resolve error while running Ant. > I've got simple build script: > <project> > <target name="test"> > <echo>Hello World</echo> > </target> > <fileset dir="${basedir} " id="somename"> > <include name="dom3-xercesImpl.jar" /> > <include name="dom3-xml-apis.jar" /> > </fileset> > </project> > When this script is executing I always get error: > BUILD FAILED > java.lang.NoSuchMethodError: > org.apache.tools.ant.util.FileUtils.getFileUtils()L > org/apache/tools/ant/util/FileUtils; > at > org.apache.tools.ant.taskdefs.optional.dotnet.ImportTypelib.<clinit>( > ImportTypelib.java:48) You most likely have two different versions of Ant on your classpath. >From your stacktrace my guess would be that there is an older ant.jar on your classpath combined with a more recent ant-optional.jar. This old ant.jar most likely hides the one that belongs to your optional jar. FileUtil.getFileUtils has been added in the 1.7 codebase and is used by several tasks and types, so my guess is that there is a 1.6.x ant.jar somewhere on your system getting in the way. Stefan --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org