pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!--
  3. ~ Copyright 2016-present the original author or authors.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ https://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. --><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">
  17. <modelVersion>4.0.0</modelVersion>
  18. <parent>
  19. <groupId>io.github.pnoker</groupId>
  20. <artifactId>iot-dc3</artifactId>
  21. <version>2023.4.5</version>
  22. </parent>
  23. <name>${project.artifactId}</name>
  24. <artifactId>dc3-center</artifactId>
  25. <version>2023.4.5</version>
  26. <packaging>pom</packaging>
  27. <inceptionYear>2016-2022</inceptionYear>
  28. <url>https://github.com/pnoker/iot-dc3</url>
  29. <description>
  30. IOT DC3 平台 综合管理中心集合,包含:服务注册与发现中心、服务监控中心、物联数据采集中心、授权与权限管理中心。
  31. </description>
  32. <developers>
  33. <developer>
  34. <id>pnoker</id>
  35. <name>pnoker</name>
  36. <email>pnokers@icloud.com</email>
  37. <organization>pnoker.github.io</organization>
  38. </developer>
  39. </developers>
  40. <licenses>
  41. <license>
  42. <name>The Apache Software License, Version 2.0</name>
  43. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  44. <distribution>repo</distribution>
  45. </license>
  46. </licenses>
  47. <scm>
  48. <url>https://github.com/pnoker/iot-dc3</url>
  49. <connection>https://github.com/pnoker/iot-dc3.git</connection>
  50. <developerConnection>https://github.com/pnoker/iot-dc3.git</developerConnection>
  51. </scm>
  52. <modules>
  53. <module>dc3-center-auth</module>
  54. <module>dc3-center-manager</module>
  55. <module>dc3-center-data</module>
  56. </modules>
  57. <dependencies>
  58. <!-- gRpc Server + Client -->
  59. <dependency>
  60. <groupId>net.devh</groupId>
  61. <artifactId>grpc-spring-boot-starter</artifactId>
  62. </dependency>
  63. <!-- DC3 Center Register Client Starter -->
  64. <dependency>
  65. <groupId>io.github.pnoker</groupId>
  66. <artifactId>dc3-starter-center-register-nacos-client</artifactId>
  67. </dependency>
  68. <!-- DC3 Common Web -->
  69. <dependency>
  70. <groupId>io.github.pnoker</groupId>
  71. <artifactId>dc3-common-web</artifactId>
  72. </dependency>
  73. <!-- DC3 Common Thread -->
  74. <dependency>
  75. <groupId>io.github.pnoker</groupId>
  76. <artifactId>dc3-common-thread</artifactId>
  77. </dependency>
  78. <!-- DC3 Common Log -->
  79. <dependency>
  80. <groupId>io.github.pnoker</groupId>
  81. <artifactId>dc3-common-log</artifactId>
  82. </dependency>
  83. <!-- DC3 Common Model -->
  84. <dependency>
  85. <groupId>io.github.pnoker</groupId>
  86. <artifactId>dc3-common-model</artifactId>
  87. </dependency>
  88. </dependencies>
  89. <repositories>
  90. <repository>
  91. <id>public</id>
  92. <name>Aliyun Public Repository</name>
  93. <url>https://maven.aliyun.com/repository/public</url>
  94. <releases>
  95. <enabled>true</enabled>
  96. </releases>
  97. <snapshots>
  98. <enabled>false</enabled>
  99. </snapshots>
  100. </repository>
  101. <repository>
  102. <id>spring</id>
  103. <name>Aliyun Spring Repository</name>
  104. <url>https://maven.aliyun.com/repository/spring</url>
  105. <releases>
  106. <enabled>true</enabled>
  107. </releases>
  108. <snapshots>
  109. <enabled>false</enabled>
  110. </snapshots>
  111. </repository>
  112. <repository>
  113. <id>maven</id>
  114. <name>Maven Central Repository</name>
  115. <url>https://repo.maven.apache.org/maven2</url>
  116. <releases>
  117. <enabled>true</enabled>
  118. </releases>
  119. <snapshots>
  120. <enabled>false</enabled>
  121. </snapshots>
  122. </repository>
  123. <repository>
  124. <id>sonatype</id>
  125. <name>Sonatype Repository</name>
  126. <url>https://s01.oss.sonatype.org/content/groups/public</url>
  127. <releases>
  128. <enabled>true</enabled>
  129. </releases>
  130. <snapshots>
  131. <enabled>true</enabled>
  132. <updatePolicy>always</updatePolicy>
  133. </snapshots>
  134. </repository>
  135. </repositories>
  136. <pluginRepositories>
  137. <pluginRepository>
  138. <id>public-plugin</id>
  139. <name>Aliyun Public Plugin Repository</name>
  140. <url>https://maven.aliyun.com/repository/public</url>
  141. <releases>
  142. <enabled>true</enabled>
  143. </releases>
  144. <snapshots>
  145. <enabled>false</enabled>
  146. </snapshots>
  147. </pluginRepository>
  148. <pluginRepository>
  149. <id>spring-plugin</id>
  150. <name>Aliyun Spring Plugin Repository</name>
  151. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  152. <releases>
  153. <enabled>true</enabled>
  154. </releases>
  155. <snapshots>
  156. <enabled>false</enabled>
  157. </snapshots>
  158. </pluginRepository>
  159. </pluginRepositories>
  160. <build>
  161. <plugins>
  162. <plugin>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-maven-plugin</artifactId>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </project>