This page gives you a quick reference to get spring-jms dependency for Maven or Gradle projects. You can also download the spring-jms jar dependency, the link given at the "Download JAR File" section.
This dependency provides all classes for JMS support.
This dependency provides all classes for JMS support.
Spring JMS Maven Dependency
Copy below Spring JMS maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jms -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
<version>5.2.1.RELEASE</version>
</dependency>
Spring JMS Gradle Dependency
Copy below Spring JMS gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.springframework/spring-jms
compile group: 'org.springframework', name: 'spring-jms', version: '5.2.1.RELEASE'
Comments
Post a Comment