pom.xml 15 KB

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