spring-messaging maven dependency

This page gives you a quick reference to get spring-messaging dependency for Maven or Gradle projects. You can also download the spring-messaging jar dependency, the link given at the "Download JAR File" section.

This dependency contains key abstractions taken from the Spring Integration project to serve as a foundation for message-based applications and adds support for STOMP messages.

Spring Messaging Maven Dependency

Copy below Spring Messaging maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-messaging -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-messaging</artifactId>
    <version>5.2.1.RELEASE</version>
</dependency>

Spring Messaging Gradle Dependency

Copy below Spring Messaging gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.springframework/spring-messaging
compile group: 'org.springframework', name: 'spring-messaging', version: '5.2.1.RELEASE'

Download JAR File

Check for Latest Release

Reference



Comments