pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>org.ruoyi</groupId>
  8. <artifactId>ruoyi-ai</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>ruoyi-modules-api</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>ruoyi-system-api</module>
  15. <module>ruoyi-chat-api</module>
  16. <module>ruoyi-knowledge-api</module>
  17. </modules>
  18. <properties>
  19. <maven.compiler.source>17</maven.compiler.source>
  20. <maven.compiler.target>17</maven.compiler.target>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. </properties>
  23. <dependencies>
  24. <!-- 系统核心模块 -->
  25. <dependency>
  26. <groupId>org.ruoyi</groupId>
  27. <artifactId>ruoyi-common-core</artifactId>
  28. </dependency>
  29. <!-- mybaits基础模块 -->
  30. <dependency>
  31. <groupId>org.ruoyi</groupId>
  32. <artifactId>ruoyi-common-mybatis</artifactId>
  33. </dependency>
  34. <!-- 脱敏模块 -->
  35. <dependency>
  36. <groupId>org.ruoyi</groupId>
  37. <artifactId>ruoyi-common-sensitive</artifactId>
  38. </dependency>
  39. <!-- excel模块-->
  40. <dependency>
  41. <groupId>org.ruoyi</groupId>
  42. <artifactId>ruoyi-common-excel</artifactId>
  43. </dependency>
  44. </dependencies>
  45. </project>