|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <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> |
10 | 9 | </parent> |
11 | | - <groupId>com.xiaofu</groupId> |
12 | 10 | <artifactId>springboot-mqtt-messagepush</artifactId> |
13 | 11 | <version>0.0.1-SNAPSHOT</version> |
14 | 12 | <name>springboot-mqtt-messagepush</name> |
15 | | - <description>springboot-mqtt-messagepush</description> |
16 | | - |
17 | | - <properties> |
18 | | - <java.version>1.8</java.version> |
19 | | - </properties> |
20 | 13 |
|
21 | 14 | <dependencies> |
22 | 15 |
|
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 | | - |
65 | 16 | <!--mqtt依赖包--> |
66 | 17 | <dependency> |
67 | 18 | <groupId>org.springframework.integration</groupId> |
|
70 | 21 | <dependency> |
71 | 22 | <groupId>org.eclipse.paho</groupId> |
72 | 23 | <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> |
79 | 25 | </dependency> |
80 | 26 |
|
81 | 27 | </dependencies> |
|
0 commit comments