Hello,
Due to some reasons, I need to use sol-jms 10.11.
However, I want to use solace-jms-spring-boot-starter for my project but the latest version of the starter (4.1.0) is using sol-jms 10.8.1.
I want to change the sol-jms version by:
<dependency>
<groupId>com.solace.spring.boot</groupId>
<artifactId>solace-jms-spring-boot-starter</artifactId>
<version>4.1.0</version>
<exclusions>
<exclusion>
<groupId>com.solacesystems</groupId>
<artifactId>sol-jms</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.solacesystems</groupId>
<artifactId>sol-jms</artifactId>
<version>10.11.0</version>
</dependency>
After changing the version, will there any compatibility issues?
Or, should I remove solace-jms-spring-boot-starter 4.1.0 and only use sol-jms 10.11?
Thanks a lot!