pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.11</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>cc.iotkit</groupId>
  12. <artifactId>iotkit-parent</artifactId>
  13. <version>0.5.3</version>
  14. <name>${project.artifactId}</name>
  15. <description>奇特物联是一个开源的物联网基础开发平台,提供了物联网及相关业务开发的常见基础功能,
  16. 能帮助你快速搭建自己的物联网相关业务平台。
  17. </description>
  18. <url>https://gitee.com/iotkit-open-source/iotkit-parent</url>
  19. <packaging>pom</packaging>
  20. <modules>
  21. <module>iot-dao</module>
  22. <module>iot-module</module>
  23. <module>iot-starter</module>
  24. <module>iot-test-tool</module>
  25. </modules>
  26. <properties>
  27. <java.version>11</java.version>
  28. <iot-iita-core.version>1.0.5</iot-iita-core.version>
  29. <spring-boot.version>2.7.11</spring-boot.version>
  30. <vertx.version>4.2.2</vertx.version>
  31. <satoken.version>1.34.0</satoken.version>
  32. <beanutils.version>1.9.3</beanutils.version>
  33. <lang3.version>3.7</lang3.version>
  34. <hutool.version>5.8.18</hutool.version>
  35. <mapstruct-plus.version>1.3.1</mapstruct-plus.version>
  36. <spring-brick.version>3.1.4</spring-brick.version>
  37. <yitter.version>1.0.6</yitter.version>
  38. <velocity.version>2.3</velocity.version>
  39. </properties>
  40. <dependencyManagement>
  41. <dependencies>
  42. <!-- SpringBoot的依赖配置-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-dependencies</artifactId>
  46. <version>${spring-boot.version}</version>
  47. <type>pom</type>
  48. <scope>import</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.github.linpeilie</groupId>
  52. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  53. <version>1.3.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-beanutils</groupId>
  57. <artifactId>commons-beanutils</artifactId>
  58. <version>${beanutils.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.github.yitter</groupId>
  62. <artifactId>yitter-idgenerator</artifactId>
  63. <version>1.0.6</version>
  64. </dependency>
  65. <!-- hutool 的依赖配置-->
  66. <dependency>
  67. <groupId>cn.hutool</groupId>
  68. <artifactId>hutool-bom</artifactId>
  69. <version>${hutool.version}</version>
  70. <type>pom</type>
  71. <scope>import</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <version>${lombok.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>jakarta.servlet</groupId>
  80. <artifactId>jakarta.servlet-api</artifactId>
  81. <version>6.0.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.quartz-scheduler</groupId>
  85. <artifactId>quartz</artifactId>
  86. <version>2.3.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>javax.ws.rs</groupId>
  90. <artifactId>javax.ws.rs-api</artifactId>
  91. <version>2.1.1</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.google.guava</groupId>
  95. <artifactId>guava</artifactId>
  96. <version>20.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>co.elastic.clients</groupId>
  100. <artifactId>elasticsearch-java</artifactId>
  101. <version>7.17.9</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>it.ozimov</groupId>
  105. <artifactId>embedded-redis</artifactId>
  106. <version>0.7.3</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.logging.log4j</groupId>
  110. <artifactId>log4j-slf4j-impl</artifactId>
  111. <version>2.17.1</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.ejlchina</groupId>
  115. <artifactId>okhttps</artifactId>
  116. <version>3.1.1</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.vertx</groupId>
  120. <artifactId>vertx-kafka-client</artifactId>
  121. <version>${vertx.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.vertx</groupId>
  125. <artifactId>vertx-core</artifactId>
  126. <version>${vertx.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>io.vertx</groupId>
  130. <artifactId>vertx-mqtt</artifactId>
  131. <version>${vertx.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>io.vertx</groupId>
  135. <artifactId>vertx-web-proxy</artifactId>
  136. <version>${vertx.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>io.vertx</groupId>
  140. <artifactId>vertx-web-client</artifactId>
  141. <version>${vertx.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.gitee.starblues</groupId>
  145. <artifactId>spring-brick</artifactId>
  146. <version>${spring-brick.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.gitee.starblues</groupId>
  150. <artifactId>spring-brick-bootstrap</artifactId>
  151. <version>${spring-brick.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.github.biyanwen</groupId>
  155. <artifactId>jpa-comment-spring-boot-starter</artifactId>
  156. <version>1.0.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.github.xiaoymin</groupId>
  160. <artifactId>knife4j-spring-boot-starter</artifactId>
  161. <version>2.0.9</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>io.swagger</groupId>
  165. <artifactId>swagger-annotations</artifactId>
  166. <version>1.5.22</version>
  167. </dependency>
  168. <!-- iot-core -->
  169. <dependency>
  170. <groupId>cc.iotkit</groupId>
  171. <artifactId>iot-common-core</artifactId>
  172. <version>${iot-iita-core.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>cc.iotkit</groupId>
  176. <artifactId>iot-common-thing</artifactId>
  177. <version>${iot-iita-core.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>cc.iotkit</groupId>
  181. <artifactId>iot-common-oss</artifactId>
  182. <version>${iot-iita-core.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>cc.iotkit</groupId>
  186. <artifactId>iot-common-websocket</artifactId>
  187. <version>${iot-iita-core.version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>cc.iotkit</groupId>
  191. <artifactId>iot-common-web</artifactId>
  192. <version>${iot-iita-core.version}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>cc.iotkit</groupId>
  196. <artifactId>iot-common-doc</artifactId>
  197. <version>${iot-iita-core.version}</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>cc.iotkit</groupId>
  201. <artifactId>iot-common-satoken</artifactId>
  202. <version>${iot-iita-core.version}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>cc.iotkit</groupId>
  206. <artifactId>iot-common-excel</artifactId>
  207. <version>${iot-iita-core.version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>cc.iotkit</groupId>
  211. <artifactId>iot-common-tenant</artifactId>
  212. <version>${iot-iita-core.version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>cc.iotkit</groupId>
  216. <artifactId>iot-common-redis</artifactId>
  217. <version>${iot-iita-core.version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>cc.iotkit</groupId>
  221. <artifactId>iot-common-log</artifactId>
  222. <version>${iot-iita-core.version}</version>
  223. </dependency>
  224. <!--message-bus-->
  225. <dependency>
  226. <groupId>cc.iotkit</groupId>
  227. <artifactId>iot-message-core</artifactId>
  228. <version>${iot-iita-core.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>cc.iotkit</groupId>
  232. <artifactId>iot-message-event-bus</artifactId>
  233. <version>${iot-iita-core.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>cc.iotkit</groupId>
  237. <artifactId>iot-message-rocketmq</artifactId>
  238. <version>${iot-iita-core.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>cc.iotkit</groupId>
  242. <artifactId>iot-script-engine</artifactId>
  243. <version>${iot-iita-core.version}</version>
  244. </dependency>
  245. <!--iot-data-->
  246. <dependency>
  247. <groupId>cc.iotkit</groupId>
  248. <artifactId>iot-data-model</artifactId>
  249. <version>${project.version}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>cc.iotkit</groupId>
  253. <artifactId>iot-data-service</artifactId>
  254. <version>${project.version}</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>cc.iotkit</groupId>
  258. <artifactId>iot-data-serviceImpl-cache</artifactId>
  259. <version>${project.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>cc.iotkit</groupId>
  263. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  264. <version>${project.version}</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>cc.iotkit</groupId>
  268. <artifactId>iot-temporal-service</artifactId>
  269. <version>${project.version}</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>cc.iotkit</groupId>
  273. <artifactId>iot-temporal-serviceImpl-es</artifactId>
  274. <version>${project.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>cc.iotkit</groupId>
  278. <artifactId>iot-temporal-serviceImpl-td</artifactId>
  279. <version>${project.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>cc.iotkit</groupId>
  283. <artifactId>iot-manager</artifactId>
  284. <version>${project.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>cc.iotkit</groupId>
  288. <artifactId>iot-generator</artifactId>
  289. <version>${project.version}</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>cc.iotkit</groupId>
  293. <artifactId>iot-message-notify</artifactId>
  294. <version>${project.version}</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>cc.iotkit</groupId>
  298. <artifactId>iot-rule-engine</artifactId>
  299. <version>${project.version}</version>
  300. </dependency>
  301. <!-- <dependency>-->
  302. <!-- <groupId>cc.iotkit</groupId>-->
  303. <!-- <artifactId>iot-screen</artifactId>-->
  304. <!-- <version>${project.version}</version>-->
  305. <!-- </dependency>-->
  306. <dependency>
  307. <groupId>cc.iotkit</groupId>
  308. <artifactId>iot-system</artifactId>
  309. <version>${project.version}</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>cc.iotkit</groupId>
  313. <artifactId>iot-message-bus</artifactId>
  314. <version>${iot-iita-core.version}</version>
  315. </dependency>
  316. <dependency>
  317. <groupId>cc.iotkit</groupId>
  318. <artifactId>iot-modbus</artifactId>
  319. <version>${project.version}</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>cc.iotkit</groupId>
  323. <artifactId>iot-openapi</artifactId>
  324. <version>${project.version}</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>cc.iotkit</groupId>
  328. <artifactId>iot-virtual-device</artifactId>
  329. <version>${project.version}</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>cc.iotkit</groupId>
  333. <artifactId>iot-plugin-core</artifactId>
  334. <version>${iot-iita-core.version}</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>cc.iotkit</groupId>
  338. <artifactId>iot-plugin-main</artifactId>
  339. <version>${project.version}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>cc.iotkit</groupId>
  343. <artifactId>iot-oss-embed</artifactId>
  344. <version>${iot-iita-core.version}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>com.github.yitter</groupId>
  348. <artifactId>yitter-idgenerator</artifactId>
  349. <version>${yitter.version}</version>
  350. </dependency>
  351. <!-- velocity代码生成使用模板 -->
  352. <dependency>
  353. <groupId>org.apache.velocity</groupId>
  354. <artifactId>velocity-engine-core</artifactId>
  355. <version>${velocity.version}</version>
  356. </dependency>
  357. </dependencies>
  358. </dependencyManagement>
  359. <build>
  360. <plugins>
  361. <plugin>
  362. <groupId>org.apache.maven.plugins</groupId>
  363. <artifactId>maven-compiler-plugin</artifactId>
  364. <version>3.8.1</version>
  365. <configuration>
  366. <source>${java.version}</source>
  367. <target>${java.version}</target>
  368. </configuration>
  369. </plugin>
  370. </plugins>
  371. </build>
  372. </project>