pom.xml 12 KB

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