pom.xml 13 KB

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