I have this line of code in an ant bulider:
<taskdef id="acceleoCompiler" name="acceleoCompiler" classname="org.eclipse.acceleo.parser.compiler.AcceleoCompiler" classpathref="Framework.libraryclasspath" >
</taskdef>
它抱怨如下:
taskdef class org.eclipse.acceleo.parser.compiler.AcceleoCompiler cannot be found using the classloader
它还说,在试图经营ant楼时,与错误一样。 问题是什么?
I have the following in my ant builder:
<path id="Framework.classpath">
<path refid="Framework.libraryclasspath" />
</path>
<path id="Framework.libraryclasspath">
<pathelement location="${ECLIPSE_HOME}/plugins/org.eclipse.acceleo.parser_3.2.0.v20111027-0537.jar"/>
</path>
And it is still not working. With the same error as before.
感谢!