我的Intellij中有一个在glasshfish上运行的项目,并且当前正在Application.xml中运行版本9.5.0
当我将项目更改为9.7.0
时,我可以毫无错误地重建项目,但是当我尝试运行它时,它会抛出此错误:
Exception while deploying the app [Application-9.7.0] : Could not find sub module [Panton9-ejb-9.5.0.jar] as defined in application.xml]]
我将每个模块的pom.xml更改为9.7.0,它们仅显示该特定子模块,没有显示任何错误。当我仔细检查该版本并将其全部设置为9.7.0时,我无法弄清楚自己做错了什么。
这是我的application.xml:
<dependencies>
<dependency>
<groupId>com.htasia</groupId>
<artifactId>Panton9-ejb</artifactId>
<version>9.7.0</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>com.htasia</groupId>
<artifactId>Generic</artifactId>
<version>9.7.0</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.htasia</groupId>
<artifactId>PantonNotify</artifactId>
<version>9.7.0</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>com.htasia</groupId>
<artifactId>PantonMCRE</artifactId>
<version>9.7.0</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>com.htasia</groupId>
<artifactId>PantonForm</artifactId>
<version>9.7.0</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>com.htasia</groupId>
<artifactId>PantonWorkflow</artifactId>
<version>9.7.0</version>
<type>ejb</type>
</dependency>
</dependencies>
请帮助。