pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <?xml version="1.0" encoding="UTF-8"?>
  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. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>io.github.pnoker</groupId>
  22. <artifactId>iot-dc3</artifactId>
  23. <version>2023.4.5</version>
  24. </parent>
  25. <name>${project.artifactId}</name>
  26. <artifactId>dc3-center</artifactId>
  27. <version>2023.4.5</version>
  28. <packaging>pom</packaging>
  29. <inceptionYear>2016-2022</inceptionYear>
  30. <url>https://github.com/pnoker/iot-dc3</url>
  31. <description>
  32. IOT DC3 平台 综合管理中心集合,包含:服务注册与发现中心、服务监控中心、物联数据采集中心、授权与权限管理中心。
  33. </description>
  34. <developers>
  35. <developer>
  36. <id>pnoker</id>
  37. <name>pnoker</name>
  38. <email>pnokers@icloud.com</email>
  39. <organization>pnoker.github.io</organization>
  40. </developer>
  41. </developers>
  42. <licenses>
  43. <license>
  44. <name>The Apache Software License, Version 2.0</name>
  45. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  46. <distribution>repo</distribution>
  47. </license>
  48. </licenses>
  49. <scm>
  50. <url>https://github.com/pnoker/iot-dc3</url>
  51. <connection>https://github.com/pnoker/iot-dc3.git</connection>
  52. <developerConnection>https://github.com/pnoker/iot-dc3.git</developerConnection>
  53. </scm>
  54. <modules>
  55. <module>dc3-center-auth</module>
  56. <module>dc3-center-manager</module>
  57. <module>dc3-center-data</module>
  58. </modules>
  59. <dependencies>
  60. <!-- gRpc Server + Client -->
  61. <dependency>
  62. <groupId>net.devh</groupId>
  63. <artifactId>grpc-spring-boot-starter</artifactId>
  64. </dependency>
  65. <!-- DC3 Center Register Client Starter -->
  66. <dependency>
  67. <groupId>io.github.pnoker</groupId>
  68. <artifactId>dc3-starter-center-register-nacos-client</artifactId>
  69. </dependency>
  70. <!-- DC3 Common Web -->
  71. <dependency>
  72. <groupId>io.github.pnoker</groupId>
  73. <artifactId>dc3-common-web</artifactId>
  74. </dependency>
  75. <!-- DC3 Common Thread -->
  76. <dependency>
  77. <groupId>io.github.pnoker</groupId>
  78. <artifactId>dc3-common-thread</artifactId>
  79. </dependency>
  80. <!-- DC3 Common Log -->
  81. <dependency>
  82. <groupId>io.github.pnoker</groupId>
  83. <artifactId>dc3-common-log</artifactId>
  84. </dependency>
  85. <!-- DC3 Common Model -->
  86. <dependency>
  87. <groupId>io.github.pnoker</groupId>
  88. <artifactId>dc3-common-model</artifactId>
  89. </dependency>
  90. </dependencies>
  91. <repositories>
  92. <repository>
  93. <id>public</id>
  94. <name>Aliyun Public Repository</name>
  95. <url>https://maven.aliyun.com/repository/public</url>
  96. <releases>
  97. <enabled>true</enabled>
  98. </releases>
  99. <snapshots>
  100. <enabled>false</enabled>
  101. </snapshots>
  102. </repository>
  103. <repository>
  104. <id>spring</id>
  105. <name>Aliyun Spring Repository</name>
  106. <url>https://maven.aliyun.com/repository/spring</url>
  107. <releases>
  108. <enabled>true</enabled>
  109. </releases>
  110. <snapshots>
  111. <enabled>false</enabled>
  112. </snapshots>
  113. </repository>
  114. <repository>
  115. <id>maven</id>
  116. <name>Maven Central Repository</name>
  117. <url>https://repo.maven.apache.org/maven2</url>
  118. <releases>
  119. <enabled>true</enabled>
  120. </releases>
  121. <snapshots>
  122. <enabled>false</enabled>
  123. </snapshots>
  124. </repository>
  125. <repository>
  126. <id>sonatype</id>
  127. <name>Sonatype Repository</name>
  128. <url>https://s01.oss.sonatype.org/content/groups/public</url>
  129. <releases>
  130. <enabled>true</enabled>
  131. </releases>
  132. <snapshots>
  133. <enabled>true</enabled>
  134. <updatePolicy>always</updatePolicy>
  135. </snapshots>
  136. </repository>
  137. </repositories>
  138. <pluginRepositories>
  139. <pluginRepository>
  140. <id>public-plugin</id>
  141. <name>Aliyun Public Plugin Repository</name>
  142. <url>https://maven.aliyun.com/repository/public</url>
  143. <releases>
  144. <enabled>true</enabled>
  145. </releases>
  146. <snapshots>
  147. <enabled>false</enabled>
  148. </snapshots>
  149. </pluginRepository>
  150. <pluginRepository>
  151. <id>spring-plugin</id>
  152. <name>Aliyun Spring Plugin Repository</name>
  153. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  154. <releases>
  155. <enabled>true</enabled>
  156. </releases>
  157. <snapshots>
  158. <enabled>false</enabled>
  159. </snapshots>
  160. </pluginRepository>
  161. </pluginRepositories>
  162. <build>
  163. <plugins>
  164. <plugin>
  165. <groupId>org.springframework.boot</groupId>
  166. <artifactId>spring-boot-maven-plugin</artifactId>
  167. </plugin>
  168. </plugins>
  169. </build>
  170. </project>