spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-amqp/pom.xml

31 lines
1.1 KiB
XML
Raw Normal View History

2013-10-04 22:38:48 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2013-10-04 22:38:48 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starters</artifactId>
<version>${revision}</version>
2013-10-04 22:38:48 +08:00
</parent>
<artifactId>spring-boot-starter-amqp</artifactId>
2016-04-24 11:42:11 +08:00
<name>Spring Boot AMQP Starter</name>
<description>Starter for using Spring AMQP and Rabbit MQ</description>
2013-10-04 22:38:48 +08:00
<properties>
<main.basedir>${basedir}/../../..</main.basedir>
2013-10-04 22:38:48 +08:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-messaging</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
</dependency>
2013-10-04 22:38:48 +08:00
</dependencies>
</project>