pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.6.7</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.zilliz</groupId>
  12. <artifactId>milvustestv2</artifactId>
  13. <version>0.0.1</version>
  14. <name>milvustest</name>
  15. <description>Auto Tests for milvus-sdk-javaV2</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. <xmlFileName>testng.xml</xmlFileName>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <artifactId>logback-classic</artifactId>
  30. <groupId>ch.qos.logback</groupId>
  31. </exclusion>
  32. <exclusion>
  33. <groupId>org.apache.logging.log4j</groupId>
  34. <artifactId>log4j-to-slf4j</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-devtools</artifactId>
  41. <scope>runtime</scope>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  55. <dependency>
  56. <groupId>org.testng</groupId>
  57. <artifactId>testng</artifactId>
  58. <version>7.5.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-test</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-test</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.milvus</groupId>
  70. <artifactId>milvus-sdk-java</artifactId>
  71. <version>2.5.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.google.protobuf</groupId>
  75. <artifactId>protobuf-java</artifactId>
  76. <version>3.24.0</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  79. <dependency>
  80. <groupId>org.apache.httpcomponents</groupId>
  81. <artifactId>httpclient</artifactId>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  84. <dependency>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpcore</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.squareup.okhttp3</groupId>
  90. <artifactId>okhttp</artifactId>
  91. <version>4.9.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.commons</groupId>
  95. <artifactId>commons-math3</artifactId>
  96. <version>3.6.1</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/io.milvus/milvus-sdk-java-bulkwriter -->
  99. <dependency>
  100. <groupId>io.milvus</groupId>
  101. <artifactId>milvus-sdk-java-bulkwriter</artifactId>
  102. <version>2.5.5</version>
  103. </dependency>
  104. </dependencies>
  105. <build>
  106. <finalName>${project.name}</finalName>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. <version>2.7.10</version>
  112. <configuration>
  113. <excludes>
  114. <exclude>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. </exclude>
  118. </excludes>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>