我有耳塞配置的問題,正是我想放置在根目錄中的耳朵和其餘的lib目錄中的jar依賴項之一。有人可以幫我弄這個嗎?maven EAR插件配置
更新:
我有4個項目,其中之一是一個容器,POM類型。其中之一是有兩個依賴的耳朵,戰爭和罐子。我想創建一個目錄結構的耳朵:
/ - a.war和b.jar項目
/ LIB / - 爲 'A' 和 'B' 的所有依賴項目
/ META-INF / - 清單。 MF
的pom.xml
<configuration>
<!-- <artifactTypeMappings>
<artifactTypeMapping type="war" mapping="webModule" />
</artifactTypeMappings> -->
<webModule>
<groupId>a</groupId>
<artifactId>a</artifactId>
<contextRoot>/a</contextRoot>
<bundleFileName>a.war</bundleFileName>
<bundleDir>lib</bundleDir>
</webModule>
<jarModule>
<groupId>b</groupId>
<artifactId>b</artifactId>
<bundleDir>/</bundleDir>
<bundleFileName>/b.jar</bundleFileName>
</jarModule>
<defaultLibBundleDir>lib</defaultLibBundleDir>
</configuration>
你可以發佈你的pom.xml文件。很難猜測... –
感謝評論,我已更新帖子,我希望現在更清晰 – user3249531