Skip to content

Commit 4b6d13d

Browse files
committed
基于rabbitmq 实现pc端未读消息小红点,
1 parent 6e39090 commit 4b6d13d

File tree

3 files changed

+4
-58
lines changed

3 files changed

+4
-58
lines changed

springboot-mqtt-messagepush/pom.xml

Lines changed: 4 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -3,65 +3,16 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>org.springframework.boot</groupId>
7-
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.0.5.RELEASE</version>
9-
<relativePath/> <!-- lookup parent from repository -->
6+
<groupId>com.notebook</groupId>
7+
<artifactId>Springboot-Notebook</artifactId>
8+
<version>0.0.1-SNAPSHOT</version>
109
</parent>
11-
<groupId>com.xiaofu</groupId>
1210
<artifactId>springboot-mqtt-messagepush</artifactId>
1311
<version>0.0.1-SNAPSHOT</version>
1412
<name>springboot-mqtt-messagepush</name>
15-
<description>springboot-mqtt-messagepush</description>
16-
17-
<properties>
18-
<java.version>1.8</java.version>
19-
</properties>
2013

2114
<dependencies>
2215

23-
<!-- 模板引擎 -->
24-
<dependency>
25-
<groupId>org.springframework.boot</groupId>
26-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
27-
</dependency>
28-
29-
<!-- 使用web启动器 -->
30-
<dependency>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-starter-web</artifactId>
33-
<version>2.0.5.RELEASE</version>
34-
</dependency>
35-
36-
<dependency>
37-
<groupId>org.springframework.boot</groupId>
38-
<artifactId>spring-boot-starter-amqp</artifactId>
39-
</dependency>
40-
41-
<dependency>
42-
<groupId>org.springframework.boot</groupId>
43-
<artifactId>spring-boot-starter-test</artifactId>
44-
<scope>test</scope>
45-
<exclusions>
46-
<exclusion>
47-
<groupId>org.junit.vintage</groupId>
48-
<artifactId>junit-vintage-engine</artifactId>
49-
</exclusion>
50-
</exclusions>
51-
</dependency>
52-
53-
<dependency>
54-
<groupId>org.springframework.boot</groupId>
55-
<artifactId>spring-boot-starter-amqp</artifactId>
56-
</dependency>
57-
58-
<dependency>
59-
<groupId>org.projectlombok</groupId>
60-
<artifactId>lombok</artifactId>
61-
<version>1.16.18</version>
62-
<scope>provided</scope>
63-
</dependency>
64-
6516
<!--mqtt依赖包-->
6617
<dependency>
6718
<groupId>org.springframework.integration</groupId>
@@ -70,12 +21,7 @@
7021
<dependency>
7122
<groupId>org.eclipse.paho</groupId>
7223
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
73-
<version>1.2.0</version>
74-
</dependency>
75-
76-
<dependency>
77-
<groupId>org.springframework.boot</groupId>
78-
<artifactId>spring-boot-starter-amqp</artifactId>
24+
<version>[1.2.1,)</version>
7925
</dependency>
8026

8127
</dependencies>

0 commit comments

Comments
 (0)