pom.xml 15 KB

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