pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <parent>
  6. <artifactId>rcaudit</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.8</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>rc-buisness</artifactId>
  12. <description>
  13. rc模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.ruoyi</groupId>
  19. <artifactId>rc-common</artifactId>
  20. </dependency>
  21. <!--审批流-->
  22. <dependency>
  23. <groupId>org.activiti</groupId>
  24. <artifactId>activiti-engine</artifactId>
  25. <version>6.0.0</version>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.mybatis</groupId>
  29. <artifactId>mybatis</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.activiti</groupId>
  35. <artifactId>activiti-spring</artifactId>
  36. <version>6.0.0</version>
  37. </dependency>
  38. <!-- 阿里JSON解析器 -->
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>fastjson</artifactId>
  42. <version>1.2.74</version>
  43. </dependency>
  44. <!--http-->
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpcore</artifactId>
  48. <version>4.4.9</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.httpcomponents</groupId>
  52. <artifactId>httpclient</artifactId>
  53. <version>4.5.13</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.httpcomponents</groupId>
  57. <artifactId>httpmime</artifactId>
  58. <version>4.5.12</version>
  59. </dependency>
  60. </dependencies>
  61. </project>