pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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>dc3-parent</artifactId>
  23. <version>2023.4.5</version>
  24. </parent>
  25. <name>${project.artifactId}</name>
  26. <artifactId>iot-dc3</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 可分布式的物联网(IOT)平台 , 基于开源Spring Cloud框架搭建,实现设备互联、管理、数据采集、代码生成、快速开发和可视化等,
  33. 兼容多种流行的物联网数据接入协议(Mqtt\Socket\Modbus\PLC\OpcUa\OpcDa...),是一整套完整的物联系统解决方案。
  34. </description>
  35. <developers>
  36. <developer>
  37. <id>pnoker</id>
  38. <name>pnoker</name>
  39. <email>pnokers@icloud.com</email>
  40. <organization>pnoker.github.io</organization>
  41. </developer>
  42. </developers>
  43. <licenses>
  44. <license>
  45. <name>The Apache Software License, Version 2.0</name>
  46. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  47. <distribution>repo</distribution>
  48. </license>
  49. </licenses>
  50. <scm>
  51. <url>https://github.com/pnoker/iot-dc3</url>
  52. <connection>https://github.com/pnoker/iot-dc3.git</connection>
  53. <developerConnection>https://github.com/pnoker/iot-dc3.git</developerConnection>
  54. </scm>
  55. <properties>
  56. <maven.deploy.skip>true</maven.deploy.skip>
  57. </properties>
  58. <profiles>
  59. <profile>
  60. <id>dev</id>
  61. <properties>
  62. <!-- You can configure environment variables commonly used in development -->
  63. <NODE_ENV>dev</NODE_ENV>
  64. </properties>
  65. <activation>
  66. <activeByDefault>true</activeByDefault>
  67. </activation>
  68. </profile>
  69. <profile>
  70. <id>test</id>
  71. <properties>
  72. <NODE_ENV>test</NODE_ENV>
  73. </properties>
  74. </profile>
  75. <profile>
  76. <id>pre</id>
  77. <properties>
  78. <NODE_ENV>pre</NODE_ENV>
  79. </properties>
  80. </profile>
  81. <profile>
  82. <id>pro</id>
  83. <properties>
  84. <NODE_ENV>pro</NODE_ENV>
  85. </properties>
  86. </profile>
  87. </profiles>
  88. <modules>
  89. <module>dc3-gateway</module>
  90. <module>dc3-center</module>
  91. <module>dc3-driver</module>
  92. </modules>
  93. <dependencyManagement>
  94. <dependencies>
  95. <!-- DC3 Api -->
  96. <dependency>
  97. <groupId>io.github.pnoker</groupId>
  98. <artifactId>dc3-api-auth</artifactId>
  99. <version>${project.version}</version>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.github.pnoker</groupId>
  104. <artifactId>dc3-api-manager</artifactId>
  105. <version>${project.version}</version>
  106. <scope>compile</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.github.pnoker</groupId>
  110. <artifactId>dc3-api-data</artifactId>
  111. <version>${project.version}</version>
  112. <scope>compile</scope>
  113. </dependency>
  114. </dependencies>
  115. </dependencyManagement>
  116. <repositories>
  117. <repository>
  118. <id>public</id>
  119. <name>Aliyun Public Repository</name>
  120. <url>https://maven.aliyun.com/repository/public</url>
  121. <releases>
  122. <enabled>true</enabled>
  123. </releases>
  124. <snapshots>
  125. <enabled>false</enabled>
  126. </snapshots>
  127. </repository>
  128. <repository>
  129. <id>spring</id>
  130. <name>Aliyun Spring Repository</name>
  131. <url>https://maven.aliyun.com/repository/spring</url>
  132. <releases>
  133. <enabled>true</enabled>
  134. </releases>
  135. <snapshots>
  136. <enabled>false</enabled>
  137. </snapshots>
  138. </repository>
  139. <repository>
  140. <id>maven</id>
  141. <name>Maven Central Repository</name>
  142. <url>https://repo.maven.apache.org/maven2</url>
  143. <releases>
  144. <enabled>true</enabled>
  145. </releases>
  146. <snapshots>
  147. <enabled>false</enabled>
  148. </snapshots>
  149. </repository>
  150. <repository>
  151. <id>sonatype</id>
  152. <name>Sonatype Repository</name>
  153. <url>https://s01.oss.sonatype.org/content/groups/public</url>
  154. <releases>
  155. <enabled>true</enabled>
  156. </releases>
  157. <snapshots>
  158. <enabled>true</enabled>
  159. <updatePolicy>always</updatePolicy>
  160. </snapshots>
  161. </repository>
  162. </repositories>
  163. <pluginRepositories>
  164. <pluginRepository>
  165. <id>public-plugin</id>
  166. <name>Aliyun Public Plugin Repository</name>
  167. <url>https://maven.aliyun.com/repository/public</url>
  168. <releases>
  169. <enabled>true</enabled>
  170. </releases>
  171. <snapshots>
  172. <enabled>false</enabled>
  173. </snapshots>
  174. </pluginRepository>
  175. <pluginRepository>
  176. <id>spring-plugin</id>
  177. <name>Aliyun Spring Plugin Repository</name>
  178. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  179. <releases>
  180. <enabled>true</enabled>
  181. </releases>
  182. <snapshots>
  183. <enabled>false</enabled>
  184. </snapshots>
  185. </pluginRepository>
  186. </pluginRepositories>
  187. </project>