pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. <groupId>io.milvus</groupId>
  25. <artifactId>milvus-sdk-java-examples</artifactId>
  26. <version>${revision}</version>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <configuration>
  33. <source>8</source>
  34. <target>8</target>
  35. </configuration>
  36. <version>3.8.1</version>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. <properties>
  41. <revision>2.5.8</revision>
  42. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  43. </properties>
  44. <!-- For development use -->
  45. <!-- Include this if you want to try the latest SNAPSHOT version -->
  46. <repositories>
  47. <repository>
  48. <id>oss.sonatype.org-snapshot</id>
  49. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  50. <releases>
  51. <enabled>false</enabled>
  52. </releases>
  53. <snapshots>
  54. <enabled>true</enabled>
  55. </snapshots>
  56. </repository>
  57. </repositories>
  58. <dependencies>
  59. <dependency>
  60. <groupId>io.milvus</groupId>
  61. <artifactId>milvus-sdk-java</artifactId>
  62. <version>${revision}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.milvus</groupId>
  66. <artifactId>milvus-sdk-java-bulkwriter</artifactId>
  67. <version>${revision}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.tensorflow</groupId>
  71. <artifactId>tensorflow-core-platform</artifactId>
  72. <version>0.5.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.projectlombok</groupId>
  76. <artifactId>lombok</artifactId>
  77. <version>1.18.22</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.slf4j</groupId>
  82. <artifactId>slf4j-log4j12</artifactId>
  83. <version>1.7.36</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.fasterxml.jackson.dataformat</groupId>
  88. <artifactId>jackson-dataformat-csv</artifactId>
  89. <version>2.16.1</version>
  90. </dependency>
  91. </dependencies>
  92. </project>