pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  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.verison>4.0.0</knife4j.verison>
  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. <aliyun.sms.version>2.0.16</aliyun.sms.version>
  45. <aliyun.oss.version>3.15.0</aliyun.oss.version>
  46. <poi.tl.verison>1.12.0</poi.tl.verison>
  47. <poi.version>5.2.2</poi.version>
  48. <flyway.version>7.15.0</flyway.version>
  49. <rabbit.version>3.1.7</rabbit.version>
  50. </properties>
  51. <modules>
  52. <module>nb-admin</module>
  53. <module>nb-common</module>
  54. <module>nb-oss</module>
  55. <module>nb-auth</module>
  56. <module>nb-core</module>
  57. <module>nb-service-api</module>
  58. <module>nb-service</module>
  59. <module>nb-im</module>
  60. </modules>
  61. <dependencies>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-test</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-actuator</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <!-- 依赖管理 -->
  73. <dependencyManagement>
  74. <dependencies>
  75. <dependency>
  76. <groupId>com.deepoove</groupId>
  77. <artifactId>poi-tl</artifactId>
  78. <version>${poi.tl.verison}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.aliyun.oss</groupId>
  82. <artifactId>aliyun-sdk-oss</artifactId>
  83. <version>${aliyun.oss.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.aliyun</groupId>
  87. <artifactId>dysmsapi20170525</artifactId>
  88. <version>${aliyun.sms.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.tuoren</groupId>
  92. <artifactId>nb-im</artifactId>
  93. <version>${nb.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.tuoren</groupId>
  97. <artifactId>app-msg-api</artifactId>
  98. <version>${nb.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.tuoren</groupId>
  102. <artifactId>app-msg</artifactId>
  103. <version>${nb.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.tuoren</groupId>
  107. <artifactId>app-assistant-api</artifactId>
  108. <version>${nb.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.tuoren</groupId>
  112. <artifactId>app-assistant</artifactId>
  113. <version>${nb.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.tuoren</groupId>
  117. <artifactId>app-doctor-api</artifactId>
  118. <version>${nb.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.tuoren</groupId>
  122. <artifactId>app-doctor</artifactId>
  123. <version>${nb.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.tuoren</groupId>
  127. <artifactId>ws-common</artifactId>
  128. <version>${nb.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.tuoren</groupId>
  132. <artifactId>doc-common</artifactId>
  133. <version>${nb.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.tuoren</groupId>
  137. <artifactId>banner-common</artifactId>
  138. <version>${nb.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.tuoren</groupId>
  142. <artifactId>config-common</artifactId>
  143. <version>${nb.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.tuoren</groupId>
  147. <artifactId>crud-common</artifactId>
  148. <version>${nb.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.tuoren</groupId>
  152. <artifactId>delay-queue-common</artifactId>
  153. <version>${nb.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.tuoren</groupId>
  157. <artifactId>log-common</artifactId>
  158. <version>${nb.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.tuoren</groupId>
  162. <artifactId>nb-core</artifactId>
  163. <version>${nb.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.tuoren</groupId>
  167. <artifactId>nb-auth</artifactId>
  168. <version>${nb.version}</version>
  169. </dependency>
  170. <!-- https://mvnrepository.com/artifact/org.python/jython-standalone -->
  171. <dependency>
  172. <groupId>org.python</groupId>
  173. <artifactId>jython-standalone</artifactId>
  174. <version>${jython.version}</version>
  175. </dependency>
  176. <!-- spring boot -->
  177. <dependency>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-dependencies</artifactId>
  180. <version>${spring-boot.version}</version>
  181. <type>pom</type>
  182. <scope>import</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.t-io</groupId>
  186. <artifactId>tio-websocket-spring-boot-starter</artifactId>
  187. <version>${tio.version}</version>
  188. </dependency>
  189. <!--swagger模块 -->
  190. <dependency>
  191. <groupId>com.github.xiaoymin</groupId>
  192. <artifactId>knife4j-openapi2-spring-boot-starter</artifactId>
  193. <version>${knife4j.verison}</version>
  194. </dependency>
  195. <!--阿里数据库连接池 -->
  196. <dependency>
  197. <groupId>com.alibaba</groupId>
  198. <artifactId>druid-spring-boot-starter</artifactId>
  199. <version>${druid.version}</version>
  200. </dependency>
  201. <!-- web 模块 -->
  202. <dependency>
  203. <groupId>org.springframework.boot</groupId>
  204. <artifactId>spring-boot-starter-web</artifactId>
  205. <version>${spring-boot.version}</version>
  206. </dependency>
  207. <!-- mybatis plus -->
  208. <dependency>
  209. <groupId>com.baomidou</groupId>
  210. <artifactId>mybatis-plus-boot-starter</artifactId>
  211. <version>${mybatis-plus.version}</version>
  212. </dependency>
  213. <!-- mybatis plus generator -->
  214. <dependency>
  215. <groupId>com.baomidou</groupId>
  216. <artifactId>mybatis-plus-generator</artifactId>
  217. <version>${mybatis-plus-generator.version}</version>
  218. </dependency>
  219. <!-- MySQL -->
  220. <dependency>
  221. <groupId>mysql</groupId>
  222. <artifactId>mysql-connector-java</artifactId>
  223. <version>${mysql-connector.version}</version>
  224. </dependency>
  225. <!-- hutool -->
  226. <dependency>
  227. <groupId>cn.hutool</groupId>
  228. <artifactId>hutool-all</artifactId>
  229. <version>${hutool.version}</version>
  230. </dependency>
  231. <!-- guava -->
  232. <dependency>
  233. <groupId>com.google.guava</groupId>
  234. <artifactId>guava</artifactId>
  235. <version>${guava.version}</version>
  236. </dependency>
  237. <!-- fastjson -->
  238. <dependency>
  239. <groupId>com.alibaba</groupId>
  240. <artifactId>fastjson</artifactId>
  241. <version>${fastjson.version}</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.apache.poi</groupId>
  245. <artifactId>poi-ooxml</artifactId>
  246. <version>${poi.version}</version>
  247. </dependency>
  248. <!-- easyexcel -->
  249. <dependency>
  250. <groupId>com.alibaba</groupId>
  251. <artifactId>easyexcel</artifactId>
  252. <version>${easyexcel.version}</version>
  253. </dependency>
  254. <!-- velocity -->
  255. <dependency>
  256. <groupId>org.apache.velocity</groupId>
  257. <artifactId>velocity-engine-core</artifactId>
  258. <version>${velocity.version}</version>
  259. </dependency>
  260. <!-- minio -->
  261. <dependency>
  262. <groupId>io.minio</groupId>
  263. <artifactId>minio</artifactId>
  264. <version>${minio.version}</version>
  265. </dependency>
  266. <!-- okhttp -->
  267. <dependency>
  268. <groupId>com.squareup.okhttp3</groupId>
  269. <artifactId>okhttp</artifactId>
  270. <version>${okhttp.version}</version>
  271. </dependency>
  272. <!-- log4j -->
  273. <dependency>
  274. <groupId>org.apache.logging.log4j</groupId>
  275. <artifactId>log4j-api</artifactId>
  276. <version>${log4j2.version}</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.apache.logging.log4j</groupId>
  280. <artifactId>log4j-to-slf4j</artifactId>
  281. <version>${log4j2.version}</version>
  282. </dependency>
  283. <!-- sa-token -->
  284. <dependency>
  285. <groupId>cn.dev33</groupId>
  286. <artifactId>sa-token-spring-boot-starter</artifactId>
  287. <version>${satoken.version}</version>
  288. </dependency>
  289. <!-- sa-token redis -->
  290. <dependency>
  291. <groupId>cn.dev33</groupId>
  292. <artifactId>sa-token-dao-redis-jackson</artifactId>
  293. <version>${satoken.version}</version>
  294. </dependency>
  295. <!-- 核心模块 -->
  296. <!-- 通用模块 -->
  297. <!-- 系统模块 -->
  298. <dependency>
  299. <groupId>com.tuoren</groupId>
  300. <artifactId>iot-service-api</artifactId>
  301. <version>${nb.version}</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>com.tuoren</groupId>
  305. <artifactId>iot-service</artifactId>
  306. <version>${nb.version}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.tuoren</groupId>
  310. <artifactId>web-service-api</artifactId>
  311. <version>${nb.version}</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>com.tuoren</groupId>
  315. <artifactId>web-service</artifactId>
  316. <version>${nb.version}</version>
  317. </dependency>
  318. <!-- OSS文件存储模块 -->
  319. <dependency>
  320. <groupId>com.tuoren</groupId>
  321. <artifactId>nb-oss</artifactId>
  322. <version>${nb.version}</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>org.jboss.marshalling</groupId>
  326. <artifactId>jboss-marshalling</artifactId>
  327. <version>2.0.9.Final</version>
  328. </dependency>
  329. <!-- redisson配置 -->
  330. <dependency>
  331. <groupId>org.redisson</groupId>
  332. <artifactId>redisson-spring-boot-starter</artifactId>
  333. <version>${redisson.version}</version>
  334. <exclusions>
  335. <exclusion>
  336. <groupId>org.springframework.boot</groupId>
  337. <artifactId>spring-boot-starter-web</artifactId>
  338. </exclusion>
  339. </exclusions>
  340. </dependency>
  341. <!--验证码配置-->
  342. <dependency>
  343. <groupId>com.github.whvcse</groupId>
  344. <artifactId>easy-captcha</artifactId>
  345. <version>${captcha.version}</version>
  346. </dependency>
  347. <!--阿里云物联网sdk-->
  348. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-iot -->
  349. <dependency>
  350. <groupId>com.aliyun</groupId>
  351. <artifactId>aliyun-java-sdk-iot</artifactId>
  352. <version>${aliyun.iot.verison}</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>com.aliyun</groupId>
  356. <artifactId>aliyun-java-sdk-core</artifactId>
  357. <version>${aliyun.sdk.verison}</version>
  358. </dependency>
  359. <!-- amqp 1.0 qpid client -->
  360. <dependency>
  361. <groupId>org.apache.qpid</groupId>
  362. <artifactId>qpid-jms-client</artifactId>
  363. <version>${jms.verison}</version>
  364. </dependency>
  365. <dependency>
  366. <groupId>com.belerweb</groupId>
  367. <artifactId>pinyin4j</artifactId>
  368. <version>${pinyin.verison}</version>
  369. </dependency>
  370. <!-- flyway -->
  371. <dependency>
  372. <groupId>org.flywaydb</groupId>
  373. <artifactId>flyway-core</artifactId>
  374. <version>${flyway.version}</version>
  375. </dependency>
  376. <dependency>
  377. <groupId>org.springframework.amqp</groupId>
  378. <artifactId>spring-rabbit</artifactId>
  379. <version>${rabbit.version}</version>
  380. </dependency>
  381. </dependencies>
  382. </dependencyManagement>
  383. </project>