pom.xml 2.2 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-spring-boot-starter-ai</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. <!-- yudao framwork -->
  29. <dependency>
  30. <groupId>cn.iocoder.boot</groupId>
  31. <artifactId>yudao-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.iocoder.boot</groupId>
  39. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  40. </dependency>
  41. <!-- 测试 -->
  42. <dependency>
  43. <groupId>cn.iocoder.boot</groupId>
  44. <artifactId>yudao-spring-boot-starter-test</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <configuration>
  53. <source>17</source>
  54. <target>17</target>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>