pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.11</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>es8</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>es8</name>
  15. <description>es8</description>
  16. <properties>
  17. <java.version>8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>co.elastic.clients</groupId>
  22. <artifactId>elasticsearch-java</artifactId>
  23. <version>8.10.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>5.8.22</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>jakarta.json</groupId>
  46. <artifactId>jakarta.json-api</artifactId>
  47. <version>2.0.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.fasterxml.jackson.core</groupId>
  51. <artifactId>jackson-databind</artifactId>
  52. <version>2.12.3</version>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <finalName>super-search</finalName>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. </plugin>
  62. <!-- <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId>
  63. <executions> <execution> <id>build-push</id> <phase>package</phase> <goals>
  64. <goal>build</goal> <goal>push</goal> </goals> </execution> </executions>
  65. </plugin> -->
  66. </plugins>
  67. </build>
  68. <repositories>
  69. <repository>
  70. <id>alimaven</id>
  71. <name>aliyun maven</name>
  72. <url>https://maven.aliyun.com/repository/public/</url>
  73. <snapshots>
  74. <enabled>false</enabled>
  75. </snapshots>
  76. </repository>
  77. <repository>
  78. <id>platomix-release</id>
  79. <name>NexusReleases</name>
  80. <url>https://windata.platomix.net/nexus/repository/maven-public/</url>
  81. </repository>
  82. </repositories>
  83. </project>