pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>cn.iocoder.boot</groupId>
  8. <artifactId>yudao-module-ai</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>yudao-module-ai-biz</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-module-ai-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-common</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.iocoder.boot</groupId>
  29. <artifactId>yudao-spring-boot-starter-ai</artifactId>
  30. <version>${revision}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-spring-boot-starter-test</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.iocoder.boot</groupId>
  38. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.iocoder.boot</groupId>
  42. <artifactId>yudao-spring-boot-starter-web</artifactId>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <configuration>
  51. <source>17</source>
  52. <target>17</target>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>