我的耳朵文件有一个 Maven 耳朵模块,其配置如下:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.6</version>
<configuration>
<displayName>app</displayName>
<description>app</description>
<modules>
...
<ejbModule>
<groupId>com.example</groupId>
<artifactId>example-client</artifactId>
<bundleFileName>example-client.jar</bundleFileName>
</ejbModule>
..
</modules>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<version>5</version>
</configuration>
</plugin>
当我使用 Intellij (ultimate 12.1.4) 将我的耳朵部署到 jboss 时,bundleFileName 被忽略。
它创建一个带有版本号的 jar 文件,但在 application.xml 中定义的 jar 文件没有版本。
有没有办法来解决这个问题?我使用“爆炸”的耳朵进行部署。
谢谢!