pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>com.sf</groupId>
  7. <artifactId>consumer-service-demo</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>spring-ai-demo</artifactId>
  11. <name>spring-ai-demo</name>
  12. <description>spring-ai-demo</description>
  13. <properties>
  14. <java.version>17</java.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.ai</groupId>
  23. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  24. </dependency>
  25. <!-- <dependency>-->
  26. <!-- <groupId>org.springframework.ai</groupId>-->
  27. <!-- <artifactId>spring-ai-stability-ai-spring-boot-starter</artifactId>-->
  28. <!-- </dependency>-->
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. </dependency>
  33. <!-- 百度智能云 -->
  34. <dependency>
  35. <groupId>com.baidu.aip</groupId>
  36. <artifactId>java-sdk</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>