У меня есть проект, работающий на Glassfish в моем Intellij, и в настоящее время он работает с версией 9.5.0
в Application.xml
Когда я изменил свои проекты на 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>