pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.pro</groupId>
  8. <version>1.20.0-SNAPSHOT</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>org.locationtech.jts</groupId>
  28. <artifactId>jts-core</artifactId>
  29. <version>1.18.2</version>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/org.locationtech.spatial4j/spatial4j -->
  32. <dependency>
  33. <groupId>org.locationtech.spatial4j</groupId>
  34. <artifactId>spatial4j</artifactId>
  35. <version>0.8</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jetlinks.pro</groupId>
  39. <artifactId>geo-component</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.elasticsearch.client</groupId>
  44. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.data</groupId>
  48. <artifactId>spring-data-elasticsearch</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.hswebframework.web</groupId>
  52. <artifactId>hsweb-commons-crud</artifactId>
  53. <version>${hsweb.framework.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.hswebframework</groupId>
  57. <artifactId>hsweb-easy-orm-rdb</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.jetlinks</groupId>
  61. <artifactId>jetlinks-core</artifactId>
  62. <version>${jetlinks.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>${project.groupId}</groupId>
  66. <artifactId>timeseries-component</artifactId>
  67. <version>${project.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.projectreactor.netty</groupId>
  71. <artifactId>reactor-netty</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.jetlinks.pro</groupId>
  75. <artifactId>tenant-component</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.jetlinks.pro</groupId>
  80. <artifactId>test-component</artifactId>
  81. <version>${project.version}</version>
  82. <scope>test</scope>
  83. </dependency>
  84. </dependencies>
  85. </project>