我有一个使用Tomcat库的Web应用程序。我尚未将jar从Tomcat库复制到web-inf / lib目录中。
现在,当我运行ant build / testNG类时,由于相关的jar不在web-inf / lib目录下,因此它引发了错误。
有什么方法(配置)可以使用Tomcat库来运行ant build / testNG类。
提前致谢,
维维克
在<testng>任务中,只需提供tomcat库作为附加的classpath元素。
<testng>
<TestNG> <classpath> <pathelement path="${classpath}"/> <pathelement location="path/to/tomcat/lib.jar"/> </classpath> </TestNG>