pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.jishutao.brain</groupId>
  6. <artifactId>core-parent</artifactId>
  7. <version>1.0.1</version>
  8. </parent>
  9. <artifactId>search_service</artifactId>
  10. <version>0.0.3</version>
  11. <name>Search Service</name>
  12. <description>Search Service</description>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <java.version>11</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.jishutao.brain</groupId>
  29. <artifactId>common-library</artifactId>
  30. <version>1.0.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.skyscreamer</groupId>
  34. <artifactId>jsonassert</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springdoc</groupId>
  38. <artifactId>springdoc-openapi-ui</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-devtools</artifactId>
  43. <optional>true</optional>
  44. <scope>runtime</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.elasticsearch.client</groupId>
  48. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-configuration-processor</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.antlr</groupId>
  62. <artifactId>antlr4-runtime</artifactId>
  63. <version>4.9.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.slf4j</groupId>
  67. <artifactId>slf4j-api</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-lang3</artifactId>
  72. </dependency>
  73. <!--集成neo4j-->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  77. </dependency>
  78. <!-- <dependency>-->
  79. <!-- <groupId>org.example</groupId>-->
  80. <!-- <artifactId>neo4j</artifactId>-->
  81. <!-- <version>1.0.0</version>-->
  82. <!-- <scope>compile</scope>-->
  83. <!-- </dependency>-->
  84. </dependencies>
  85. <build>
  86. <finalName>search_service</finalName>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.antlr</groupId>
  94. <artifactId>antlr4-maven-plugin</artifactId>
  95. <version>4.9.3</version>
  96. <executions>
  97. <execution>
  98. <goals>
  99. <goal>antlr4</goal>
  100. </goals>
  101. </execution>
  102. </executions>
  103. <configuration>
  104. <treatWarningsAsErrors>true</treatWarningsAsErrors>
  105. <listener>false</listener>
  106. <visitor>true</visitor>
  107. </configuration>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-source-plugin</artifactId>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. <!-- <distributionManagement>
  116. <repository>
  117. <id>sciradar-releases</id>
  118. <url>http://nexus.sciradar.com/repository/sciradar-releases/</url>
  119. </repository>
  120. <snapshotRepository>
  121. <id>sciradar-snapshots</id>
  122. <url>http://nexus.sciradar.com/repository/sciradar-snapshots/</url>
  123. </snapshotRepository>
  124. </distributionManagement> -->
  125. </project>