pom.xml 15 KB

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