pom.xml 891 B

12345678910111213141516171819202122232425
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.eco.vip</groupId>
  6. <artifactId>eco-boot</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>eco-ai</artifactId>
  10. <name>${project.artifactId}</name>
  11. <modules>
  12. <module>ai-text-sql-api</module>
  13. <module>ai-text-sql-biz</module>
  14. <module>ai-ollama-api</module>
  15. <module>ai-ollama-biz</module>
  16. <module>ai-knowledge-api</module>
  17. <module>ai-knowledge-biz</module>
  18. </modules>
  19. <packaging>pom</packaging>
  20. <description>
  21. Ai 模块包含:
  22. chat、text2Sql、RAG等等
  23. </description>
  24. </project>