pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <module>ruoyi-wechat</module>
  22. </modules>
  23. <properties>
  24. <httpclient.version>4.5.14</httpclient.version>
  25. <jackson.version>2.15.2</jackson.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.ruoyi</groupId>
  30. <artifactId>ruoyi-common-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.ruoyi</groupId>
  34. <artifactId>ruoyi-common-idempotent</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.ruoyi</groupId>
  38. <artifactId>ruoyi-common-security</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.ruoyi</groupId>
  42. <artifactId>ruoyi-common-sensitive</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.ruoyi</groupId>
  46. <artifactId>ruoyi-common-tenant</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fasterxml.jackson.dataformat</groupId>
  50. <artifactId>jackson-dataformat-xml</artifactId>
  51. <version>${jackson.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.httpcomponents</groupId>
  55. <artifactId>httpmime</artifactId>
  56. <version>${httpclient.version}</version>
  57. </dependency>
  58. </dependencies>
  59. </project>