pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.tuoren</groupId>
  7. <artifactId>nb-root</artifactId>
  8. <name>${project.artifactId}</name>
  9. <packaging>pom</packaging>
  10. <version>1.0</version>
  11. <properties>
  12. <nb.version>1.0</nb.version>
  13. <java.version>1.8</java.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <versions-maven-plugin.version>2.7</versions-maven-plugin.version>
  19. <skipTests>true</skipTests>
  20. <hutool.version>5.7.21</hutool.version>
  21. <pinyin.verison>2.5.1</pinyin.verison>
  22. <guava.version>30.1.1-jre</guava.version>
  23. <druid.version>1.2.8</druid.version>
  24. <spring-boot.version>2.5.8</spring-boot.version>
  25. <mybatis-plus.version>3.5.1</mybatis-plus.version>
  26. <mybatis-plus-generator.version>3.4.1</mybatis-plus-generator.version>
  27. <mysql-connector.version>8.0.27</mysql-connector.version>
  28. <fastjson.version>1.2.79</fastjson.version>
  29. <easyexcel.version>3.0.5</easyexcel.version>
  30. <minio.version>8.3.7</minio.version>
  31. <okhttp.version>4.9.3</okhttp.version>
  32. <velocity.version>2.3</velocity.version>
  33. <log4j2.version>2.17.1</log4j2.version>
  34. <satoken.version>1.31.0</satoken.version>
  35. <springfox.version>3.0.0</springfox.version>
  36. <tio.version>3.6.0.v20200315-RELEASE</tio.version>
  37. <jython.version>2.7.1</jython.version>
  38. <knife4j.version>2.0.7</knife4j.version>
  39. <redisson.version>3.17.0</redisson.version>
  40. <captcha.version>1.6.2</captcha.version>
  41. <aliyun.iot.verison>7.31.0</aliyun.iot.verison>
  42. <aliyun.sdk.verison>4.5.6</aliyun.sdk.verison>
  43. <jms.verison>0.56.0</jms.verison>
  44. </properties>
  45. <modules>
  46. <module>nb-admin</module>
  47. <module>nb-common</module>
  48. <module>nb-oss</module>
  49. <module>nb-auth</module>
  50. <module>nb-core</module>
  51. <module>nb-service-api</module>
  52. <module>nb-service</module>
  53. <module>nb-im</module>
  54. </modules>
  55. <dependencies>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-actuator</artifactId>
  64. </dependency>
  65. </dependencies>
  66. <!-- 依赖管理 -->
  67. <dependencyManagement>
  68. <dependencies>
  69. <dependency>
  70. <groupId>com.tuoren</groupId>
  71. <artifactId>mq-common</artifactId>
  72. <version>${nb.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.tuoren</groupId>
  76. <artifactId>nb-im</artifactId>
  77. <version>${nb.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.tuoren</groupId>
  81. <artifactId>app-msg-api</artifactId>
  82. <version>${nb.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.tuoren</groupId>
  86. <artifactId>app-msg</artifactId>
  87. <version>${nb.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.tuoren</groupId>
  91. <artifactId>app-assistant-api</artifactId>
  92. <version>${nb.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.tuoren</groupId>
  96. <artifactId>app-assistant</artifactId>
  97. <version>${nb.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.tuoren</groupId>
  101. <artifactId>app-doctor-api</artifactId>
  102. <version>${nb.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.tuoren</groupId>
  106. <artifactId>app-doctor</artifactId>
  107. <version>${nb.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.tuoren</groupId>
  111. <artifactId>ws-common</artifactId>
  112. <version>${nb.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.tuoren</groupId>
  116. <artifactId>config-common</artifactId>
  117. <version>${nb.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.tuoren</groupId>
  121. <artifactId>crud-common</artifactId>
  122. <version>${nb.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.tuoren</groupId>
  126. <artifactId>delay-queue-common</artifactId>
  127. <version>${nb.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.tuoren</groupId>
  131. <artifactId>log-common</artifactId>
  132. <version>${nb.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.tuoren</groupId>
  136. <artifactId>nb-core</artifactId>
  137. <version>${nb.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.tuoren</groupId>
  141. <artifactId>nb-auth</artifactId>
  142. <version>${nb.version}</version>
  143. </dependency>
  144. <!-- https://mvnrepository.com/artifact/org.python/jython-standalone -->
  145. <dependency>
  146. <groupId>org.python</groupId>
  147. <artifactId>jython-standalone</artifactId>
  148. <version>${jython.version}</version>
  149. </dependency>
  150. <!-- spring boot -->
  151. <dependency>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-dependencies</artifactId>
  154. <version>${spring-boot.version}</version>
  155. <type>pom</type>
  156. <scope>import</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.t-io</groupId>
  160. <artifactId>tio-websocket-spring-boot-starter</artifactId>
  161. <version>${tio.version}</version>
  162. </dependency>
  163. <!--swagger模块 -->
  164. <dependency>
  165. <groupId>com.github.xiaoymin</groupId>
  166. <artifactId>knife4j-spring-boot-starter</artifactId>
  167. <version>${knife4j.version}</version>
  168. </dependency>
  169. <!--阿里数据库连接池 -->
  170. <dependency>
  171. <groupId>com.alibaba</groupId>
  172. <artifactId>druid-spring-boot-starter</artifactId>
  173. <version>${druid.version}</version>
  174. </dependency>
  175. <!-- web 模块 -->
  176. <dependency>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-starter-web</artifactId>
  179. <version>${spring-boot.version}</version>
  180. </dependency>
  181. <!-- mybatis plus -->
  182. <dependency>
  183. <groupId>com.baomidou</groupId>
  184. <artifactId>mybatis-plus-boot-starter</artifactId>
  185. <version>${mybatis-plus.version}</version>
  186. </dependency>
  187. <!-- mybatis plus generator -->
  188. <dependency>
  189. <groupId>com.baomidou</groupId>
  190. <artifactId>mybatis-plus-generator</artifactId>
  191. <version>${mybatis-plus-generator.version}</version>
  192. </dependency>
  193. <!-- MySQL -->
  194. <dependency>
  195. <groupId>mysql</groupId>
  196. <artifactId>mysql-connector-java</artifactId>
  197. <version>${mysql-connector.version}</version>
  198. </dependency>
  199. <!-- hutool -->
  200. <dependency>
  201. <groupId>cn.hutool</groupId>
  202. <artifactId>hutool-all</artifactId>
  203. <version>${hutool.version}</version>
  204. </dependency>
  205. <!-- guava -->
  206. <dependency>
  207. <groupId>com.google.guava</groupId>
  208. <artifactId>guava</artifactId>
  209. <version>${guava.version}</version>
  210. </dependency>
  211. <!-- fastjson -->
  212. <dependency>
  213. <groupId>com.alibaba</groupId>
  214. <artifactId>fastjson</artifactId>
  215. <version>${fastjson.version}</version>
  216. </dependency>
  217. <!-- easyexcel -->
  218. <dependency>
  219. <groupId>com.alibaba</groupId>
  220. <artifactId>easyexcel</artifactId>
  221. <version>${easyexcel.version}</version>
  222. </dependency>
  223. <!-- velocity -->
  224. <dependency>
  225. <groupId>org.apache.velocity</groupId>
  226. <artifactId>velocity-engine-core</artifactId>
  227. <version>${velocity.version}</version>
  228. </dependency>
  229. <!-- minio -->
  230. <dependency>
  231. <groupId>io.minio</groupId>
  232. <artifactId>minio</artifactId>
  233. <version>${minio.version}</version>
  234. </dependency>
  235. <!-- okhttp -->
  236. <dependency>
  237. <groupId>com.squareup.okhttp3</groupId>
  238. <artifactId>okhttp</artifactId>
  239. <version>${okhttp.version}</version>
  240. </dependency>
  241. <!-- log4j -->
  242. <dependency>
  243. <groupId>org.apache.logging.log4j</groupId>
  244. <artifactId>log4j-api</artifactId>
  245. <version>${log4j2.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.logging.log4j</groupId>
  249. <artifactId>log4j-to-slf4j</artifactId>
  250. <version>${log4j2.version}</version>
  251. </dependency>
  252. <!-- sa-token -->
  253. <dependency>
  254. <groupId>cn.dev33</groupId>
  255. <artifactId>sa-token-spring-boot-starter</artifactId>
  256. <version>${satoken.version}</version>
  257. </dependency>
  258. <!-- sa-token redis -->
  259. <dependency>
  260. <groupId>cn.dev33</groupId>
  261. <artifactId>sa-token-dao-redis-jackson</artifactId>
  262. <version>${satoken.version}</version>
  263. </dependency>
  264. <!-- 核心模块 -->
  265. <!-- 通用模块 -->
  266. <!-- 系统模块 -->
  267. <dependency>
  268. <groupId>com.tuoren</groupId>
  269. <artifactId>iot-service-api</artifactId>
  270. <version>${nb.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>com.tuoren</groupId>
  274. <artifactId>iot-service</artifactId>
  275. <version>${nb.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>com.tuoren</groupId>
  279. <artifactId>web-service-api</artifactId>
  280. <version>${nb.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>com.tuoren</groupId>
  284. <artifactId>web-service</artifactId>
  285. <version>${nb.version}</version>
  286. </dependency>
  287. <!-- OSS文件存储模块 -->
  288. <dependency>
  289. <groupId>com.tuoren</groupId>
  290. <artifactId>nb-oss</artifactId>
  291. <version>${nb.version}</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.jboss.marshalling</groupId>
  295. <artifactId>jboss-marshalling</artifactId>
  296. <version>2.0.9.Final</version>
  297. </dependency>
  298. <!-- redisson配置 -->
  299. <dependency>
  300. <groupId>org.redisson</groupId>
  301. <artifactId>redisson-spring-boot-starter</artifactId>
  302. <version>${redisson.version}</version>
  303. <exclusions>
  304. <exclusion>
  305. <groupId>org.springframework.boot</groupId>
  306. <artifactId>spring-boot-starter-web</artifactId>
  307. </exclusion>
  308. </exclusions>
  309. </dependency>
  310. <!--验证码配置-->
  311. <dependency>
  312. <groupId>com.github.whvcse</groupId>
  313. <artifactId>easy-captcha</artifactId>
  314. <version>${captcha.version}</version>
  315. </dependency>
  316. <!--阿里云物联网sdk-->
  317. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-iot -->
  318. <dependency>
  319. <groupId>com.aliyun</groupId>
  320. <artifactId>aliyun-java-sdk-iot</artifactId>
  321. <version>${aliyun.iot.verison}</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>com.aliyun</groupId>
  325. <artifactId>aliyun-java-sdk-core</artifactId>
  326. <version>${aliyun.sdk.verison}</version>
  327. </dependency>
  328. <!-- amqp 1.0 qpid client -->
  329. <dependency>
  330. <groupId>org.apache.qpid</groupId>
  331. <artifactId>qpid-jms-client</artifactId>
  332. <version>${jms.verison}</version>
  333. </dependency>
  334. <dependency>
  335. <groupId>com.belerweb</groupId>
  336. <artifactId>pinyin4j</artifactId>
  337. <version>${pinyin.verison}</version>
  338. </dependency>
  339. <dependency>
  340. <groupId>org.springframework.boot</groupId>
  341. <artifactId>spring-boot-starter-amqp</artifactId>
  342. <version>${spring-boot.version}</version>
  343. </dependency>
  344. </dependencies>
  345. </dependencyManagement>
  346. </project>