pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <groupId>cn.superdesk.libs</groupId>
  6. <artifactId>superdesk-libs</artifactId>
  7. <version>1.3.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-libs-search</artifactId>
  10. <version>1.3.1</version>
  11. <properties>
  12. <lucene.version>[7.1.0,)</lucene.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.apache.lucene</groupId>
  17. <artifactId>lucene-core</artifactId>
  18. <version>${lucene.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.lucene</groupId>
  22. <artifactId>lucene-queryparser</artifactId>
  23. <version>${lucene.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.lucene</groupId>
  27. <artifactId>lucene-analyzers-common</artifactId>
  28. <version>${lucene.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.lucene</groupId>
  32. <artifactId>lucene-analyzers-smartcn</artifactId>
  33. <version>${lucene.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.lucene</groupId>
  37. <artifactId>lucene-highlighter</artifactId>
  38. <version>${lucene.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.elasticsearch</groupId>
  42. <artifactId>elasticsearch</artifactId>
  43. <version>5.5.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.data</groupId>
  47. <artifactId>spring-data-elasticsearch</artifactId>
  48. <version>2.1.4.RELEASE</version>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-deploy-plugin</artifactId>
  56. <configuration>
  57. <skip>true</skip>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>