pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <artifactId>ruoyi-ai</artifactId>
  8. <groupId>org.ruoyi</groupId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>ruoyi-modules</artifactId>
  13. <packaging>pom</packaging>
  14. <description>
  15. ruoyi-modules 业务模块
  16. </description>
  17. <modules>
  18. <module>ruoyi-chat</module>
  19. <module>ruoyi-system</module>
  20. <module>ruoyi-generator</module>
  21. </modules>
  22. <properties>
  23. <httpclient.version>4.5.14</httpclient.version>
  24. <jackson.version>2.15.2</jackson.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.ruoyi</groupId>
  29. <artifactId>ruoyi-common-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.ruoyi</groupId>
  33. <artifactId>ruoyi-common-idempotent</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.ruoyi</groupId>
  37. <artifactId>ruoyi-common-security</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.ruoyi</groupId>
  41. <artifactId>ruoyi-common-sensitive</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.ruoyi</groupId>
  45. <artifactId>ruoyi-common-tenant</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.dataformat</groupId>
  49. <artifactId>jackson-dataformat-xml</artifactId>
  50. <version>${jackson.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpmime</artifactId>
  55. <version>${httpclient.version}</version>
  56. </dependency>
  57. </dependencies>
  58. </project>