我需要配置從maven貨物插件運行的jetty以將其指向靜態內容,Ive瀏覽了碼頭文檔並且無法看到如何將配置應用於碼頭作爲貨物的一部分運行。我要配置的Web應用程序部分,將資源基地作爲我建的這個版本的模塊角應用:爲靜態內容配置maven貨物插件碼頭容器
<execution>
<id>start jetty - angular webapp</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
<configuration>
<container>
<containerId>jetty7x</containerId>
<type>embedded</type>
</container>
<webApp>
<resourceBases>
<contextPath>/</contextPath>
<resourceBase>../calculator-web/dist</resourceBase>
</resourceBases>
</webApp>
<configuration>
<properties>
<cargo.servlet.port>11000</cargo.servlet.port>
</properties>
</configuration>
</configuration>
</execution>
碼頭開始,但它似乎忽略了這個配置,我只是得到我的索引404。 html文件。
請問有人能指點我正確的方向嗎?