mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2024-11-16 04:54:57 +08:00
42 lines
1.1 KiB
XML
42 lines
1.1 KiB
XML
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<artifactId>skyeye-promote</artifactId>
|
||
|
<groupId>com.skyeye</groupId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>skyeye-mq</artifactId>
|
||
|
|
||
|
<name>skyeye-mq</name>
|
||
|
<url>http://www.example.com</url>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<!-- 引入基础模块的依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>com.skyeye</groupId>
|
||
|
<artifactId>skyeye-userauth</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- mq消息通知 -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.activemq</groupId>
|
||
|
<artifactId>activemq-core</artifactId>
|
||
|
<version>5.7.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.activemq</groupId>
|
||
|
<artifactId>activemq-pool</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-jms</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|