elastic-data-test

pom.xml 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>elastic-data-test</artifactId>
  7. <groupId>com.vcarecity.test.data</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>elastic-publish-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.vcarecity.test.data</groupId>
  15. <artifactId>common</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.mybatis.spring.boot</groupId>
  23. <artifactId>mybatis-spring-boot-starter</artifactId>
  24. <version>2.1.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <!-- <dependency>
  31. <groupId>oracle.jdbc</groupId>
  32. <artifactId>ojdbc8</artifactId>
  33. </dependency>-->
  34. <dependency>
  35. <groupId>org.elasticsearch.client</groupId>
  36. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.elasticsearch.client</groupId>
  40. <artifactId>elasticsearch-rest-client</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.elasticsearch</groupId>
  44. <artifactId>elasticsearch</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <scope>provided</scope>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>8.0.18</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>org.junit.vintage</groupId>
  64. <artifactId>junit-vintage-engine</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <!-- <plugin>-->
  72. <!-- <groupId>org.springframework.boot</groupId>-->
  73. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  74. <!-- </plugin>-->
  75. </plugins>
  76. </build>
  77. </project>