Red Hat Training

A Red Hat training course is available for Red Hat AMQ

Chapter 2. Installation

This chapter guides you through the steps to install AMQ Spring Boot Starter in your environment.

Using the Red Hat Maven repository

The library uses Apache Maven as its build tool. You can configure your Maven environment to download the library from the Red Hat Maven repository.

Procedure

  1. Add the Red Hat repository to your Maven settings or POM file. For example configuration files, see Section B.1, “Using the online repository”.

    <repository>
      <id>red-hat-ga</id>
      <url>https://maven.repository.redhat.com/ga</url>
    </repository>
  2. Add the library dependency to your POM file.

    <dependency>
      <groupId>org.amqphub.spring</groupId>
      <artifactId>amqp-10-jms-spring-boot-starter</artifactId>
      <version>2.1.2.redhat-00001</version>
    </dependency>

The library is now available in your Maven project.