pom.xml 14 KB

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