Supported Environments for the PubSub+ Java API

The PubSub+ Messaging API for Java is compatible and supported with any version of the Java Development Kit (JDK) that is in active support and also has security update support.

For information about supported versions of the JDK, see https://www.oracle.com/java/technologies/java-se-support-roadmap.html. For newer JDK releases, additional time is required to update the PubSub+ Messaging API for Java. The PubSub+ Java API has not been tested with Android platforms. You can retrieve the PubSub+ Java API using Maven (pom.xml) or Gradle (build.gradle).

Maven example:

<dependency>
  <groupId>com.solace</groupId>
  <artifactId>solace-messaging-client</artifactId>
  <version>1.5.0</version>
</dependency>

Gradle example:

...
...
dependencies {
// Solace Messaging API for Java Dependencies
implementation group: 'com.solace', name: 'solace-messaging-client', version: '1.5.0'
...
}