pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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>org.jetlinks.community</groupId>
  7. <artifactId>jetlinks-community</artifactId>
  8. <version>1.10.0-SNAPSHOT</version>
  9. <modules>
  10. <module>jetlinks-components</module>
  11. <module>jetlinks-manager</module>
  12. <module>jetlinks-standalone</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.build.locales>zh_CN</project.build.locales>
  18. <spring.boot.version>2.3.11.RELEASE</spring.boot.version>
  19. <java.version>1.8</java.version>
  20. <project.build.jdk>${java.version}</project.build.jdk>
  21. <hsweb.framework.version>4.0.12</hsweb.framework.version>
  22. <easyorm.version>4.0.13-SNAPSHOT</easyorm.version>
  23. <hsweb.expands.version>3.0.2</hsweb.expands.version>
  24. <jetlinks.version>1.1.7-SNAPSHOT</jetlinks.version>
  25. <r2dbc.version>Arabba-SR10</r2dbc.version>
  26. <vertx.version>3.8.5</vertx.version>
  27. <netty.version>4.1.51.Final</netty.version>
  28. <elasticsearch.version>7.11.2</elasticsearch.version>
  29. <reactor.excel.version>1.0.1</reactor.excel.version>
  30. <reactor.ql.version>1.0.13</reactor.ql.version>
  31. <fastjson.version>1.2.75</fastjson.version>
  32. <hutool.version>5.7.16</hutool.version>
  33. <jetlinks.version>1.1.7-SNAPSHOT</jetlinks.version>
  34. <aliyun.sdk.version>4.5.2</aliyun.sdk.version>
  35. </properties>
  36. <build>
  37. <finalName>${project.artifactId}</finalName>
  38. <resources>
  39. <resource>
  40. <directory>src/main/resources</directory>
  41. <filtering>true</filtering>
  42. </resource>
  43. </resources>
  44. <pluginManagement>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-install-plugin</artifactId>
  49. <version>2.4</version>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <version>${spring.boot.version}</version>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-deploy-plugin</artifactId>
  59. <version>2.8.2</version>
  60. </plugin>
  61. </plugins>
  62. </pluginManagement>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-compiler-plugin</artifactId>
  67. <version>3.1</version>
  68. <configuration>
  69. <source>${project.build.jdk}</source>
  70. <target>${project.build.jdk}</target>
  71. <encoding>${project.build.sourceEncoding}</encoding>
  72. </configuration>
  73. </plugin>
  74. <plugin>
  75. <groupId>org.jacoco</groupId>
  76. <artifactId>jacoco-maven-plugin</artifactId>
  77. <version>0.8.0</version>
  78. <executions>
  79. <execution>
  80. <goals>
  81. <goal>prepare-agent</goal>
  82. </goals>
  83. </execution>
  84. <execution>
  85. <id>report</id>
  86. <phase>test</phase>
  87. <goals>
  88. <goal>report</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-source-plugin</artifactId>
  96. <version>2.4</version>
  97. <executions>
  98. <execution>
  99. <id>attach-sources</id>
  100. <goals>
  101. <goal>jar-no-fork</goal>
  102. </goals>
  103. </execution>
  104. </executions>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.codehaus.gmavenplus</groupId>
  108. <artifactId>gmavenplus-plugin</artifactId>
  109. <version>1.6.1</version>
  110. <executions>
  111. <execution>
  112. <goals>
  113. <goal>addTestSources</goal>
  114. <goal>compile</goal>
  115. <goal>compileTests</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. <dependencies>
  120. <dependency>
  121. <groupId>org.codehaus.groovy</groupId>
  122. <artifactId>groovy-all</artifactId>
  123. <version>2.4.15</version>
  124. </dependency>
  125. </dependencies>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-surefire-plugin</artifactId>
  130. <version>2.17</version>
  131. <configuration>
  132. <includes>
  133. <include>**/*Test.java</include>
  134. <include>**/*Test.groovy</include>
  135. <include>**/*Tests.java</include>
  136. <include>**/*Test.groovy</include>
  137. <include>**/*Spec.java</include>
  138. </includes>
  139. </configuration>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-javadoc-plugin</artifactId>
  144. <version>3.0.0</version>
  145. </plugin>
  146. </plugins>
  147. </build>
  148. <profiles>
  149. <profile>
  150. <id>build</id>
  151. <repositories>
  152. <repository>
  153. <id>maven-central</id>
  154. <name>central</name>
  155. <url>https://repo1.maven.org/maven2/</url>
  156. </repository>
  157. </repositories>
  158. </profile>
  159. </profiles>
  160. <dependencyManagement>
  161. <dependencies>
  162. <dependency>
  163. <groupId>com.aliyun</groupId>
  164. <artifactId>aliyun-java-sdk-core</artifactId>
  165. <version>${aliyun.sdk.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>cn.hutool</groupId>
  169. <artifactId>hutool-all</artifactId>
  170. <version>${hutool.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>cn.hutool</groupId>
  174. <artifactId>hutool-http</artifactId>
  175. <version>${hutool.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>cn.hutool</groupId>
  179. <artifactId>hutool-json</artifactId>
  180. <version>${hutool.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>cn.hutool</groupId>
  184. <artifactId>hutool-core</artifactId>
  185. <version>${hutool.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>cn.hutool</groupId>
  189. <artifactId>hutool-crypto</artifactId>
  190. <version>${hutool.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>io.netty</groupId>
  194. <artifactId>netty-bom</artifactId>
  195. <version>${netty.version}</version>
  196. <type>pom</type>
  197. <scope>import</scope>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.jetlinks</groupId>
  201. <artifactId>reactor-ql</artifactId>
  202. <version>${reactor.ql.version}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.jetlinks</groupId>
  206. <artifactId>jetlinks-core</artifactId>
  207. <version>${jetlinks.version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.fasterxml.jackson</groupId>
  211. <artifactId>jackson-bom</artifactId>
  212. <version>2.10.4</version>
  213. <type>pom</type>
  214. <scope>import</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.hswebframework</groupId>
  218. <artifactId>reactor-excel</artifactId>
  219. <version>${reactor.excel.version}</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>io.vavr</groupId>
  223. <artifactId>vavr</artifactId>
  224. <version>0.9.2</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>ch.qos.logback</groupId>
  228. <artifactId>logback-classic</artifactId>
  229. <version>1.2.3</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>com.alibaba</groupId>
  233. <artifactId>fastjson</artifactId>
  234. <version>${fastjson.version}</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>io.r2dbc</groupId>
  238. <artifactId>r2dbc-bom</artifactId>
  239. <version>${r2dbc.version}</version>
  240. <type>pom</type>
  241. <scope>import</scope>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.springframework.boot</groupId>
  245. <artifactId>spring-boot-dependencies</artifactId>
  246. <version>${spring.boot.version}</version>
  247. <type>pom</type>
  248. <scope>import</scope>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.hswebframework.web</groupId>
  252. <artifactId>hsweb-framework</artifactId>
  253. <version>${hsweb.framework.version}</version>
  254. <type>pom</type>
  255. <scope>import</scope>
  256. <exclusions>
  257. <exclusion>
  258. <groupId>org.springframework.boot</groupId>
  259. <artifactId>spring-boot-dependencies</artifactId>
  260. </exclusion>
  261. </exclusions>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.jetlinks</groupId>
  265. <artifactId>rule-engine-support</artifactId>
  266. <version>${jetlinks.version}</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>org.jetlinks</groupId>
  270. <artifactId>jetlinks-supports</artifactId>
  271. <version>${jetlinks.version}</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>io.vertx</groupId>
  275. <artifactId>vertx-core</artifactId>
  276. <version>${vertx.version}</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>io.vertx</groupId>
  280. <artifactId>vertx-mqtt</artifactId>
  281. <version>${vertx.version}</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.elasticsearch.client</groupId>
  285. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  286. <version>${elasticsearch.version}</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.elasticsearch</groupId>
  290. <artifactId>elasticsearch</artifactId>
  291. <version>${elasticsearch.version}</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.elasticsearch.client</groupId>
  295. <artifactId>elasticsearch-rest-client</artifactId>
  296. <version>${elasticsearch.version}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.elasticsearch.plugin</groupId>
  300. <artifactId>transport-netty4-client</artifactId>
  301. <version>${elasticsearch.version}</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.hswebframework</groupId>
  305. <artifactId>hsweb-easy-orm-core</artifactId>
  306. <version>${easyorm.version}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.hswebframework</groupId>
  310. <artifactId>hsweb-easy-orm-rdb</artifactId>
  311. <version>${easyorm.version}</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.hswebframework</groupId>
  315. <artifactId>hsweb-easy-orm-elasticsearch</artifactId>
  316. <version>${easyorm.version}</version>
  317. </dependency>
  318. </dependencies>
  319. </dependencyManagement>
  320. <dependencies>
  321. <dependency>
  322. <groupId>org.springframework.boot</groupId>
  323. <artifactId>spring-boot-starter-test</artifactId>
  324. <scope>test</scope>
  325. </dependency>
  326. <dependency>
  327. <groupId>dev.miku</groupId>
  328. <artifactId>r2dbc-mysql</artifactId>
  329. </dependency>
  330. <dependency>
  331. <groupId>io.projectreactor</groupId>
  332. <artifactId>reactor-tools</artifactId>
  333. </dependency>
  334. <dependency>
  335. <groupId>io.projectreactor</groupId>
  336. <artifactId>reactor-test</artifactId>
  337. <scope>test</scope>
  338. </dependency>
  339. <dependency>
  340. <groupId>org.springframework</groupId>
  341. <artifactId>spring-context-indexer</artifactId>
  342. </dependency>
  343. <dependency>
  344. <groupId>io.projectreactor</groupId>
  345. <artifactId>reactor-core</artifactId>
  346. </dependency>
  347. <dependency>
  348. <groupId>org.codehaus.groovy</groupId>
  349. <artifactId>groovy-all</artifactId>
  350. <version>2.4.17</version>
  351. </dependency>
  352. <dependency>
  353. <groupId>junit</groupId>
  354. <artifactId>junit</artifactId>
  355. <scope>test</scope>
  356. </dependency>
  357. <dependency>
  358. <groupId>org.slf4j</groupId>
  359. <artifactId>slf4j-api</artifactId>
  360. </dependency>
  361. <dependency>
  362. <groupId>ch.qos.logback</groupId>
  363. <artifactId>logback-classic</artifactId>
  364. </dependency>
  365. <dependency>
  366. <groupId>org.projectlombok</groupId>
  367. <artifactId>lombok</artifactId>
  368. <scope>provided</scope>
  369. </dependency>
  370. <dependency>
  371. <groupId>org.springframework.boot</groupId>
  372. <artifactId>spring-boot-configuration-processor</artifactId>
  373. <optional>true</optional>
  374. </dependency>
  375. <dependency>
  376. <groupId>org.hswebframework</groupId>
  377. <artifactId>hsweb-utils</artifactId>
  378. </dependency>
  379. </dependencies>
  380. <repositories>
  381. <repository>
  382. <id>aliyun-nexus</id>
  383. <name>aliyun</name>
  384. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  385. </repository>
  386. <repository>
  387. <id>hsweb-nexus</id>
  388. <name>Nexus Release Repository</name>
  389. <url>http://nexus.hsweb.me/content/groups/public/</url>
  390. <snapshots>
  391. <enabled>true</enabled>
  392. <updatePolicy>always</updatePolicy>
  393. </snapshots>
  394. </repository>
  395. </repositories>
  396. <distributionManagement>
  397. <repository>
  398. <id>releases</id>
  399. <name>Nexus Release Repository</name>
  400. <url>http://nexus.hsweb.me/content/repositories/releases/</url>
  401. </repository>
  402. <snapshotRepository>
  403. <id>snapshots</id>
  404. <name>Nexus Snapshot Repository</name>
  405. <url>http://nexus.hsweb.me/content/repositories/snapshots/</url>
  406. </snapshotRepository>
  407. </distributionManagement>
  408. <pluginRepositories>
  409. <pluginRepository>
  410. <id>aliyun-nexus</id>
  411. <name>aliyun</name>
  412. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  413. </pluginRepository>
  414. </pluginRepositories>
  415. </project>