-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
74 lines (62 loc) · 2.64 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
<!-- 项目信息 -->
<groupId>com.mqttsnet.thinglinks</groupId>
<artifactId>bifromq-plugin</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>bifromq-plugin</name>
<url>https://www.mqttsnet.com</url>
<description>A comprehensive collection of modular and hot-swappable plugin examples, designed to demonstrate the
dynamic extension and customization capabilities of the ThingLinks platform using the Open EXP framework.
</description>
<modules>
<module>bifromq-auth-provider-plugin</module>
<module>bifromq-event-collector-plugin</module>
<module>bifromq-resource-throttler-plugin</module>
<module>bifromq-setting-provider-plugin</module>
</modules>
<properties>
<maven.compiler.plugin.version>3.10.1</maven.compiler.plugin.version>
<maven.assembly.plugin.version>3.4.1</maven.assembly.plugin.version>
<maven.resources.plugin.version>3.2.0</maven.resources.plugin.version>
<java.source.version>17</java.source.version>
<java.target.version>17</java.target.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>aliyun</id>
<name>aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
</repository>
<repository>
<id>oss-public</id>
<url>https://oss.sonatype.org/content/repositories/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>aliyun-plugin</id>
<url>https://maven.aliyun.com/repository/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>