2017-01-08 14:40:57 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-05-12 14:32:54 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2018-08-31 10:52:40 -04:00
|
|
|
<artifactId>spring-amqp</artifactId>
|
2017-05-12 14:32:54 -04:00
|
|
|
<version>0.1-SNAPSHOT</version>
|
2018-08-31 10:52:40 -04:00
|
|
|
<name>spring-amqp</name>
|
2019-02-09 15:17:19 -05:00
|
|
|
<packaging>jar</packaging>
|
2017-05-12 14:32:54 -04:00
|
|
|
<description>Introduction to Spring-AMQP</description>
|
2017-01-08 14:40:57 -05:00
|
|
|
|
2017-05-12 14:32:54 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2017-01-08 14:40:57 -05:00
|
|
|
|
2017-05-12 14:32:54 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.amqp</groupId>
|
|
|
|
<artifactId>spring-rabbit</artifactId>
|
2018-07-12 03:04:54 -04:00
|
|
|
<version>${spring-rabbit}</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2018-07-12 03:04:54 -04:00
|
|
|
<finalName>spring-amqp</finalName>
|
2017-05-12 14:32:54 -04:00
|
|
|
</build>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
|
|
|
<properties>
|
2018-07-12 03:04:54 -04:00
|
|
|
<spring-rabbit>1.6.6.RELEASE</spring-rabbit>
|
2018-04-26 02:50:35 -04:00
|
|
|
</properties>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2017-01-08 14:40:57 -05:00
|
|
|
</project>
|