pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.3.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.hswebframework.web</groupId>
  40. <artifactId>hsweb-commons-crud</artifactId>
  41. <version>${hsweb.framework.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.hswebframework</groupId>
  45. <artifactId>hsweb-easy-orm-rdb</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jetlinks</groupId>
  49. <artifactId>jetlinks-core</artifactId>
  50. <version>${jetlinks.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>${project.groupId}</groupId>
  54. <artifactId>timeseries-component</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. </dependencies>
  58. </project>