pom.xml 2.1 KB

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