pom.xml 16 KB

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