j

jms

The Java Message Service (JMS) API is a messaging standard that allows application components based on the Java 2 Platform, Enterprise Edition (J2EE) to create, send, receive, and read messages. It enables distributed communication that is loosely coupled, reliable, and asynchronous.
http://java.sun.com/products/jms
Files download
File Operation
jms-1.1.pom download
Apache Maven
<dependency>
  <groupId>javax.jms</groupId>
  <artifactId>jms</artifactId>
  <version>1.1</version>
</dependency>
Gradle Groovy
implementation 'javax.jms:jms:1.1'
Gradle Kotlin
implementation("javax.jms:jms:1.1")
Scala SBT
libraryDependencies += "javax.jms" % "jms" % "1.1"
Groovy Grape
@Grapes(
  @Grab(group='javax.jms', module='jms', version='1.1')
)
Apache Ivy
<dependency org="javax.jms" name="jms" rev="1.1" />
Leiningen
[javax.jms/jms "1.1"]
Apache Buildr
'javax.jms:jms:jar:1.1'
Dependencies
The project has no third-party dependencies