pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <parent>
  6. <artifactId>jetlinks-components</artifactId>
  7. <groupId>org.jetlinks.community</groupId>
  8. <version>1.8.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>elasticsearch-component</artifactId>
  13. <dependencies>
  14. <dependency><!-- required by elasticsearch -->
  15. <groupId>org.elasticsearch.plugin</groupId>
  16. <artifactId>transport-netty4-client</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.logging.log4j</groupId>
  20. <artifactId>log4j-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.slf4j</groupId>
  24. <artifactId>log4j-over-slf4j</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>io.projectreactor</groupId>
  28. <artifactId>reactor-core</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.hswebframework</groupId>
  32. <artifactId>hsweb-easy-orm-elasticsearch</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.elasticsearch.client</groupId>
  36. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.data</groupId>
  40. <artifactId>spring-data-elasticsearch</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hswebframework.web</groupId>
  44. <artifactId>hsweb-commons-crud</artifactId>
  45. <version>${hsweb.framework.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.hswebframework</groupId>
  49. <artifactId>hsweb-easy-orm-rdb</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.jetlinks</groupId>
  53. <artifactId>jetlinks-core</artifactId>
  54. <version>${jetlinks.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>${project.groupId}</groupId>
  58. <artifactId>timeseries-component</artifactId>
  59. <version>${project.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.projectreactor.netty</groupId>
  63. <artifactId>reactor-netty</artifactId>
  64. </dependency>
  65. </dependencies>
  66. </project>