pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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.search</groupId>
  12. <artifactId>super-search</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>super-search</name>
  15. <description>super-search</description>
  16. <properties>
  17. <java.version>8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.platomix</groupId>
  22. <artifactId>platomix-gmetry-framework</artifactId>
  23. <version>2.1.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  28. </dependency>
  29. <!-- <dependency>-->
  30. <!-- <groupId>org.elasticsearch</groupId>-->
  31. <!-- <artifactId>elasticsearch</artifactId>-->
  32. <!-- <version>7.6.2</version>-->
  33. <!-- </dependency>-->
  34. <!-- <dependency>-->
  35. <!-- <groupId>org.elasticsearch.client</groupId>-->
  36. <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
  37. <!-- <version>7.6.2</version>-->
  38. <!-- </dependency>-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-parsers -->
  54. <dependency>
  55. <groupId>org.apache.tika</groupId>
  56. <artifactId>tika-parsers</artifactId>
  57. <version>2.9.0</version>
  58. <type>pom</type>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-parsers-standard-package -->
  61. <dependency>
  62. <groupId>org.apache.tika</groupId>
  63. <artifactId>tika-parsers-standard-package</artifactId>
  64. <version>2.9.0</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-core -->
  67. <dependency>
  68. <groupId>org.apache.tika</groupId>
  69. <artifactId>tika-core</artifactId>
  70. <version>2.9.0</version>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <finalName>super-search</finalName>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. </plugin>
  80. <!-- <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId>
  81. <executions> <execution> <id>build-push</id> <phase>package</phase> <goals>
  82. <goal>build</goal> <goal>push</goal> </goals> </execution> </executions>
  83. </plugin> -->
  84. </plugins>
  85. </build>
  86. <repositories>
  87. <repository>
  88. <id>alimaven</id>
  89. <name>aliyun maven</name>
  90. <url>https://maven.aliyun.com/repository/public/</url>
  91. <snapshots>
  92. <enabled>false</enabled>
  93. </snapshots>
  94. </repository>
  95. <repository>
  96. <id>platomix-release</id>
  97. <name>NexusReleases</name>
  98. <url>https://windata.platomix.net/nexus/repository/maven-public/</url>
  99. </repository>
  100. </repositories>
  101. </project>