pom.xml 14 KB

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