2017-02-25 04:45:21 -05:00
|
|
|
<?xml version="1.0"?>
|
2018-07-12 03:04:54 -04:00
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
2017-02-25 04:45:21 -05:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>rabbitmq</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<name>rabbitmq</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
|
|
|
|
2017-02-25 04:45:21 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rabbitmq</groupId>
|
|
|
|
<artifactId>amqp-client</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${amqp-client.version}</version>
|
2017-02-25 04:45:21 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2018-04-26 08:37:47 -04:00
|
|
|
<amqp-client.version>3.6.6</amqp-client.version>
|
2017-02-25 04:45:21 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|