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"
|
2017-05-12 14:32:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2017-01-08 14:40:57 -05:00
|
|
|
|
2017-05-12 14:32:54 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>springamqp</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2017-01-08 14:40:57 -05:00
|
|
|
|
2017-05-12 14:32:54 -04:00
|
|
|
<name>springamqp</name>
|
|
|
|
<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
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
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>
|
|
|
|
<version>1.6.6.RELEASE</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>springamqp</finalName>
|
|
|
|
</build>
|
2017-01-08 14:40:57 -05:00
|
|
|
</project>
|