|
@ -0,0 +1,86 @@
|
|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
5
|
<modelVersion>4.0.0</modelVersion>
|
|
6
|
|
|
7
|
<groupId>com.ai.ipu</groupId>
|
|
8
|
<artifactId>ipu-rabbitmq-example</artifactId>
|
|
9
|
<version>1.0-SNAPSHOT</version>
|
|
10
|
|
|
11
|
<properties>
|
|
12
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
13
|
<ipu>3.1-SNAPSHOT</ipu>
|
|
14
|
<jdk>1.8</jdk>
|
|
15
|
</properties>
|
|
16
|
|
|
17
|
<dependencies>
|
|
18
|
<dependency>
|
|
19
|
<groupId>com.ai.aif.msgframe</groupId>
|
|
20
|
<artifactId>msgframe-common</artifactId>
|
|
21
|
<version>1.9.2</version>
|
|
22
|
</dependency>
|
|
23
|
<dependency>
|
|
24
|
<groupId>com.ai.aif.msgframe</groupId>
|
|
25
|
<artifactId>msgframe-client</artifactId>
|
|
26
|
<version>1.9.2</version>
|
|
27
|
</dependency>
|
|
28
|
<dependency>
|
|
29
|
<groupId>com.ai.aif.msgframe</groupId>
|
|
30
|
<artifactId>msgframe-server</artifactId>
|
|
31
|
<version>1.9.2</version>
|
|
32
|
</dependency>
|
|
33
|
<dependency>
|
|
34
|
<groupId>com.ai.aif.msgframe</groupId>
|
|
35
|
<artifactId>xmlmsgframe</artifactId>
|
|
36
|
<version>2.6.4</version>
|
|
37
|
</dependency>
|
|
38
|
<dependency>
|
|
39
|
<groupId>org.apache.xmlbeans</groupId>
|
|
40
|
<artifactId>xmlbeans</artifactId>
|
|
41
|
<version>2.6.0</version>
|
|
42
|
</dependency>
|
|
43
|
<dependency>
|
|
44
|
<groupId>com.rabbitmq</groupId>
|
|
45
|
<artifactId>amqp-client</artifactId>
|
|
46
|
<version>3.6.5</version>
|
|
47
|
</dependency>
|
|
48
|
<dependency>
|
|
49
|
<groupId>com.alibaba</groupId>
|
|
50
|
<artifactId>fastjson</artifactId>
|
|
51
|
<version>1.1.46</version>
|
|
52
|
</dependency>
|
|
53
|
<dependency>
|
|
54
|
<groupId>org.hamcrest</groupId>
|
|
55
|
<artifactId>hamcrest-core</artifactId>
|
|
56
|
<version>1.3</version>
|
|
57
|
</dependency>
|
|
58
|
<dependency>
|
|
59
|
<groupId>javax.jms</groupId>
|
|
60
|
<artifactId>jms</artifactId>
|
|
61
|
<version>1.1</version>
|
|
62
|
</dependency>
|
|
63
|
<dependency>
|
|
64
|
<groupId>org.apache.kafka</groupId>
|
|
65
|
<artifactId>kafka-clients</artifactId>
|
|
66
|
<version>0.10.2.0</version>
|
|
67
|
</dependency>
|
|
68
|
<dependency>
|
|
69
|
<groupId>log4j</groupId>
|
|
70
|
<artifactId>log4j</artifactId>
|
|
71
|
<version>1.2.12</version>
|
|
72
|
</dependency>
|
|
73
|
<dependency>
|
|
74
|
<groupId>com.alibaba.rocketmq</groupId>
|
|
75
|
<artifactId>rocketmq-client</artifactId>
|
|
76
|
<version>3.5.9</version>
|
|
77
|
</dependency>
|
|
78
|
<dependency>
|
|
79
|
<groupId>junit</groupId>
|
|
80
|
<artifactId>junit</artifactId>
|
|
81
|
<version>4.12</version>
|
|
82
|
<scope>compile</scope>
|
|
83
|
</dependency>
|
|
84
|
</dependencies>
|
|
85
|
|
|
86
|
</project>
|