我想用maven啓動和停止碼頭。如何用maven啓動和停止碼頭
這是我的設置http://nopaste.info/61ef12198d.html
隨着mvn jetty:run
我的碼頭在本地啓動,但是當我要在測試階段與mvn -Pselenium test
碼頭跑碼頭不運行。
我想用maven啓動和停止碼頭。如何用maven啓動和停止碼頭
這是我的設置http://nopaste.info/61ef12198d.html
隨着mvn jetty:run
我的碼頭在本地啓動,但是當我要在測試階段與mvn -Pselenium test
碼頭跑碼頭不運行。
我的猜測是你必須將執行jetty:run
綁定到在test
之前運行的階段。我的猜測是process-test-classes
。見Maven Lifecycle Reference。
「Maven方式」將在integration-test
階段運行您的Selenium測試,並在pre-integration-test
和post-integration-test
階段分別啓動和停止Jetty。
有幾種方法可以實現這樣的配置,參見Integration and Functional Testing with Maven 2.0一種方法。
我該如何開始呢?用mvn -Pselenium測試? – 2010-10-10 21:07:42
當然,應該這樣做。將插件執行添加到配置文件中,顯然 – 2010-10-10 21:13:05
哦,我該怎麼做?對不起,這個愚蠢的問題.. – 2010-10-10 21:30:04