Hi all,
I am trying to run my ant task for compiling my tellurium web test
classes(java+groovy).
It was working fine but i suddenly did one small change that i created
an java interface and imported it into my groovy class.
After that my ant task started giving this err:
[groovyc]
org.codehaus.groovy.control.MultipleCompilationErrorsException:
startup failed, web\user\UserModule.groovy: 3: unable to resolve class
web.Statics
Where Static is my java interface and i import it in my grovvy class
like
import web.Statics
However when i compile and run my test cases through idea it workes
very well.
Anybody has any idea about this issue?
My ant task is as followings:
<target name="setup-webtest" description="Compiles and configures one
Tellurium webtest.">
<groovyc destdir="${test-build.dir}"
classpathref="full.classpath" srcdir="${src.tellurium.webtest}"/>
<javac debug="${compiler.debug}" destdir="${test-build.dir}"
fork="true" executable="${javac.executable}"
classpathref="full.classpath" target="$
{javac.target.version}" source="${javac.source.version}">
<src path="${src.tellurium.webtest}"/>
</javac>
</target>
-Khush
--
You received this message because you are subscribed to the Google Groups
"tellurium-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tellurium-users?hl=en.