pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2014, 2023, Chengdu Minto Technology Co.,LTD. All rights reserved.
  4. ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5. -->
  6. <project xmlns="http://maven.apache.org/POM/4.0.0"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  9. <parent>
  10. <artifactId>tip-service</artifactId>
  11. <groupId>com.minto</groupId>
  12. <version>standard_V8.0_SP1_feature_M12</version>
  13. </parent>
  14. <modelVersion>4.0.0</modelVersion>
  15. <packaging>jar</packaging>
  16. <artifactId>minto-tip-index</artifactId>
  17. <dependencies>
  18. <!-- lucene -->
  19. <dependency>
  20. <groupId>org.apache.lucene</groupId>
  21. <artifactId>lucene-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.lucene</groupId>
  25. <artifactId>lucene-queryparser</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.lucene</groupId>
  29. <artifactId>lucene-highlighter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.lionsoul</groupId>
  33. <artifactId>jcseg-analyzer</artifactId>
  34. <exclusions>
  35. <exclusion>
  36. <artifactId>lucene-analyzers-common</artifactId>
  37. <groupId>org.apache.lucene</groupId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. </dependencies>
  42. </project>