pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. <artifactId>dc3-driver</artifactId>
  26. <packaging>pom</packaging>
  27. <description>IOT DC3 平台 设备协议驱动集合。</description>
  28. <modules>
  29. <module>dc3-driver-virtual</module>
  30. <module>dc3-driver-listening-virtual</module>
  31. <module>dc3-driver-plcs7</module>
  32. <module>dc3-driver-opc-da</module>
  33. <module>dc3-driver-opc-ua</module>
  34. <module>dc3-driver-mqtt</module>
  35. <module>dc3-driver-modbus-tcp</module>
  36. <module>dc3-driver-edge-gateway</module>
  37. <module>dc3-driver-lwm2m</module>
  38. <module>dc3-driver-dtu-yeecom</module>
  39. <module>dc3-driver-weather-amap</module>
  40. </modules>
  41. <dependencies>
  42. <!-- DC3 Driver Sdk -->
  43. <dependency>
  44. <groupId>io.github.pnoker</groupId>
  45. <artifactId>dc3-driver-sdk</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <repositories>
  49. <repository>
  50. <id>public</id>
  51. <name>Aliyun Public Repository</name>
  52. <url>https://maven.aliyun.com/repository/public</url>
  53. <releases>
  54. <enabled>true</enabled>
  55. </releases>
  56. <snapshots>
  57. <enabled>false</enabled>
  58. </snapshots>
  59. </repository>
  60. <repository>
  61. <id>spring</id>
  62. <name>Aliyun Spring Repository</name>
  63. <url>https://maven.aliyun.com/repository/spring</url>
  64. <releases>
  65. <enabled>true</enabled>
  66. </releases>
  67. <snapshots>
  68. <enabled>false</enabled>
  69. </snapshots>
  70. </repository>
  71. <repository>
  72. <id>maven</id>
  73. <name>Maven Central Repository</name>
  74. <url>https://repo.maven.apache.org/maven2</url>
  75. <releases>
  76. <enabled>true</enabled>
  77. </releases>
  78. <snapshots>
  79. <enabled>false</enabled>
  80. </snapshots>
  81. </repository>
  82. <repository>
  83. <id>sonatype</id>
  84. <name>Sonatype Repository</name>
  85. <url>https://s01.oss.sonatype.org/content/groups/public</url>
  86. <releases>
  87. <enabled>true</enabled>
  88. </releases>
  89. <snapshots>
  90. <enabled>true</enabled>
  91. <updatePolicy>always</updatePolicy>
  92. </snapshots>
  93. </repository>
  94. </repositories>
  95. <pluginRepositories>
  96. <pluginRepository>
  97. <id>public-plugin</id>
  98. <name>Aliyun Public Plugin Repository</name>
  99. <url>https://maven.aliyun.com/repository/public</url>
  100. <releases>
  101. <enabled>true</enabled>
  102. </releases>
  103. <snapshots>
  104. <enabled>false</enabled>
  105. </snapshots>
  106. </pluginRepository>
  107. <pluginRepository>
  108. <id>spring-plugin</id>
  109. <name>Aliyun Spring Plugin Repository</name>
  110. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  111. <releases>
  112. <enabled>true</enabled>
  113. </releases>
  114. <snapshots>
  115. <enabled>false</enabled>
  116. </snapshots>
  117. </pluginRepository>
  118. </pluginRepositories>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>