pom.xml 890 B

123456789101112131415161718192021222324252627
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>xx-framework-java</artifactId>
  6. <groupId>com.xxh.cloud</groupId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>xx-config-elasticsearch</artifactId>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.dromara.easy-es</groupId>
  18. <artifactId>easy-es-boot-starter</artifactId>
  19. </dependency>
  20. </dependencies>
  21. </project>