pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>net.yaoyi.pipeline</groupId>
  8. <artifactId>yyc-pipeline</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>fn-opensearch</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.projectlombok</groupId>
  15. <artifactId>lombok</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.slf4j</groupId>
  19. <artifactId>slf4j-api</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.slf4j</groupId>
  23. <artifactId>slf4j-simple</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>net.yaoyi.pipeline</groupId>
  27. <artifactId>fn-common</artifactId>
  28. <version>1.0.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>net.yaoyi.pipeline</groupId>
  32. <artifactId>yyc-pipeline-model</artifactId>
  33. <version>1.0.0-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.aliyun</groupId>
  37. <artifactId>aliyun-sdk-ha3engine-vector</artifactId>
  38. <version>1.1.18</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aliyun.fc.runtime</groupId>
  42. <artifactId>fc-java-core</artifactId>
  43. <version>1.4.1</version>
  44. </dependency>
  45. </dependencies>
  46. </project>