2011-08-18 69 views
1

我有一個使用Tomcat庫的Web應用程序。我沒有將Tomcat庫中的jar文件複製到web-inf/lib目錄中。在Webapp項目中使用Tomcat庫

現在,當我運行一個ant build/testNG類時,它會拋出一個錯誤,因爲相關的jar不存在於web-inf/lib目錄下。

是否有任何方式(配置),我可以使用Tomcat庫運行ant build/testNG類。

由於提前,

維韋克

回答

1

<testng>任務,只需要提供Tomcat的庫as additional classpath elements

<TestNG> 
    <classpath> 
     <pathelement path="${classpath}"/> 
     <pathelement location="path/to/tomcat/lib.jar"/> 
    </classpath> 
</TestNG> 
+0

@Vivek那麼也許你應該[接受答案】(http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work) –

+0

我已經接受了回答:) – Vivek

+0

@Vivek不要在評論中寫這個。相反:或者更新你的問題,或者(更好)提出一個新問題。和:謝謝:-) –