pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>model</module>
  8. <module>rule-engine</module>
  9. <module>common</module>
  10. <module>manager</module>
  11. <module>dao</module>
  12. <module>protocol-gateway</module>
  13. <module>standalone-package</module>
  14. </modules>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.6.2</version>
  19. <relativePath/> <!-- lookup parent from repository -->
  20. </parent>
  21. <groupId>cc.iotkit</groupId>
  22. <artifactId>iotkit-parent</artifactId>
  23. <version>0.1.0-SNAPSHOT</version>
  24. <name>iotkit-parent</name>
  25. <description>iotkit parent</description>
  26. <properties>
  27. <java.version>1.8</java.version>
  28. <keycloak-spring.version>17.0.0</keycloak-spring.version>
  29. <vertx.version>4.2.2</vertx.version>
  30. </properties>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-dependencies</artifactId>
  36. <version>2021.0.0</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-beanutils</groupId>
  42. <artifactId>commons-beanutils</artifactId>
  43. <version>1.9.3</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fasterxml.jackson.core</groupId>
  47. <artifactId>jackson-core</artifactId>
  48. <version>2.13.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.commons</groupId>
  52. <artifactId>commons-lang3</artifactId>
  53. <version>3.7</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-io</groupId>
  57. <artifactId>commons-io</artifactId>
  58. <version>2.11.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-codec</groupId>
  62. <artifactId>commons-codec</artifactId>
  63. <version>1.14</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.projectlombok</groupId>
  67. <artifactId>lombok</artifactId>
  68. <version>1.18.22</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.github.ben-manes.caffeine</groupId>
  72. <artifactId>caffeine</artifactId>
  73. <version>2.8.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.directory.studio</groupId>
  77. <artifactId>org.apache.commons.codec</artifactId>
  78. <version>1.8</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.bouncycastle</groupId>
  82. <artifactId>bcprov-jdk15on</artifactId>
  83. <version>1.57</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.keycloak</groupId>
  87. <artifactId>keycloak-spring-boot-starter</artifactId>
  88. <version>${keycloak-spring.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.keycloak</groupId>
  92. <artifactId>keycloak-spring-security-adapter</artifactId>
  93. <version>${keycloak-spring.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.keycloak</groupId>
  97. <artifactId>keycloak-admin-client</artifactId>
  98. <version>${keycloak-spring.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.quartz-scheduler</groupId>
  102. <artifactId>quartz</artifactId>
  103. <version>2.3.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>javax.ws.rs</groupId>
  107. <artifactId>javax.ws.rs-api</artifactId>
  108. <version>2.1.1</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.google.guava</groupId>
  112. <artifactId>guava</artifactId>
  113. <version>20.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.aliyun.oss</groupId>
  117. <artifactId>aliyun-sdk-oss</artifactId>
  118. <version>3.10.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>co.elastic.clients</groupId>
  122. <artifactId>elasticsearch-java</artifactId>
  123. <version>7.15.2</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>joda-time</groupId>
  127. <artifactId>joda-time</artifactId>
  128. <version>2.10.10</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.pulsar</groupId>
  132. <artifactId>pulsar-client</artifactId>
  133. <version>2.9.1</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.pulsar</groupId>
  137. <artifactId>pulsar-client-api</artifactId>
  138. <version>2.9.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.pulsar</groupId>
  142. <artifactId>pulsar-client-original</artifactId>
  143. <version>2.9.1</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.eclipse.paho</groupId>
  147. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  148. <version>1.2.5</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>io.vertx</groupId>
  152. <artifactId>vertx-core</artifactId>
  153. <version>${vertx.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>io.vertx</groupId>
  157. <artifactId>vertx-mqtt</artifactId>
  158. <version>${vertx.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>io.vertx</groupId>
  162. <artifactId>vertx-web-proxy</artifactId>
  163. <version>${vertx.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>io.vertx</groupId>
  167. <artifactId>vertx-web-client</artifactId>
  168. <version>${vertx.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>cc.iotkit</groupId>
  172. <artifactId>model</artifactId>
  173. <version>${project.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>cc.iotkit</groupId>
  177. <artifactId>common</artifactId>
  178. <version>${project.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>cc.iotkit</groupId>
  182. <artifactId>dao</artifactId>
  183. <version>${project.version}</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>cc.iotkit</groupId>
  187. <artifactId>rule-engine</artifactId>
  188. <version>${project.version}</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>cc.iotkit</groupId>
  192. <artifactId>component</artifactId>
  193. <version>${project.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>cc.iotkit</groupId>
  197. <artifactId>converter</artifactId>
  198. <version>${project.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>cc.iotkit</groupId>
  202. <artifactId>component-server</artifactId>
  203. <version>${project.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>cc.iotkit</groupId>
  207. <artifactId>mqtt-component</artifactId>
  208. <version>${project.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>cc.iotkit</groupId>
  212. <artifactId>standalone-package</artifactId>
  213. <version>${project.version}</version>
  214. </dependency>
  215. </dependencies>
  216. </dependencyManagement>
  217. </project>