2014-02-06 72 views
0

我有一個調用第三方服務的JBehave套件。目前,我需要在命令行上運行安裝階段時追加-Dhttp.proxyPort = myport和-Dhttp.proxyHost = myhost。如何在pom中設置proxyPort和proxyHost

有沒有辦法在pom中設置這些屬性,以便我可以將它們從命令中刪除?

我試過在頂部的標籤內添加它們。而且我也嘗試了萬無一失的插件象下面這樣:

<plugin> 
    <groupId>org.apache.maven.plugins</groupId> 
    <artifactId>maven-surefire-plugin</artifactId> 
    <version>2.16</version> 
    <configuration> 
     <systemPropertyVariables> 
      <http.proxyPort>myPort1</http.proxyPort> 
      <http.proxyHost>myHost1</http.proxyHost> 
     </systemPropertyVariables> 
    </configuration> 
</plugin> 

回答

相關問題