pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. The ASF licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. -->
  20. <project xmlns="http://maven.apache.org/POM/4.0.0"
  21. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  22. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  23. <modelVersion>4.0.0</modelVersion>
  24. <parent>
  25. <groupId>io.milvus</groupId>
  26. <artifactId>milvus-sdk-java</artifactId>
  27. <version>2.2.2</version>
  28. <relativePath>../pom.xml</relativePath>
  29. </parent>
  30. <groupId>io.milvus</groupId>
  31. <artifactId>milvus-sdk-java-examples</artifactId>
  32. <version>2.2.2</version>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <source>8</source>
  40. <target>8</target>
  41. </configuration>
  42. <version>3.8.1</version>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. <properties>
  47. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  48. </properties>
  49. <!-- For development use -->
  50. <!-- Include this if you want to try the latest SNAPSHOT version -->
  51. <repositories>
  52. <repository>
  53. <id>oss.sonatype.org-snapshot</id>
  54. <url>http://oss.sonatype.org/content/repositories/snapshots</url>
  55. <releases>
  56. <enabled>false</enabled>
  57. </releases>
  58. <snapshots>
  59. <enabled>true</enabled>
  60. </snapshots>
  61. </repository>
  62. </repositories>
  63. <dependencies>
  64. <dependency>
  65. <groupId>io.milvus</groupId>
  66. <artifactId>milvus-sdk-java</artifactId>
  67. <version>2.2.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.google.code.gson</groupId>
  71. <artifactId>gson</artifactId>
  72. <version>2.8.9</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.slf4j</groupId>
  76. <artifactId>slf4j-api</artifactId>
  77. <version>1.7.30</version>
  78. </dependency>
  79. </dependencies>
  80. </project>