pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <parent>
  7. <groupId>com.sckw</groupId>
  8. <artifactId>sckw-common</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>sckw-common-elasticsearch</artifactId>
  12. <version>1.0.0</version>
  13. <description>核心模块</description>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <elasticsearch.version>8.5.3</elasticsearch.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>co.elastic.clients</groupId>
  24. <artifactId>elasticsearch-java</artifactId>
  25. <version>${elasticsearch.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.elasticsearch.client</groupId>
  29. <artifactId>elasticsearch-rest-client</artifactId>
  30. <version>${elasticsearch.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.alibaba</groupId>
  34. <artifactId>fastjson</artifactId>
  35. </dependency>
  36. </dependencies>
  37. </project>