Digital Office Automation System Backend
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>ruoyi-vue-plus</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>4.6.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-workflow</artifactId>
  12. <description>
  13. 工作流模块
  14. </description>
  15. <properties>
  16. <xerces.version>2.11.0</xerces.version>
  17. <batik.version>1.10</batik.version>
  18. <commons.io.version>2.11.0</commons.io.version>
  19. </properties>
  20. <dependencies>
  21. <!--activiti6.0-->
  22. <dependency>
  23. <groupId>org.activiti</groupId>
  24. <artifactId>activiti-spring-boot-starter-rest-api</artifactId>
  25. </dependency>
  26. <!-- java绘制activiti流程图 -->
  27. <dependency>
  28. <groupId>org.activiti</groupId>
  29. <artifactId>activiti-image-generator</artifactId>
  30. </dependency>
  31. <!-- activiti json转换器-->
  32. <dependency>
  33. <groupId>org.activiti</groupId>
  34. <artifactId>activiti-json-converter</artifactId>
  35. </dependency>
  36. <!--系统模块-->
  37. <dependency>
  38. <groupId>com.ruoyi</groupId>
  39. <artifactId>ruoyi-system</artifactId>
  40. </dependency>
  41. <!-- svg转png图片工具-->
  42. <dependency>
  43. <groupId>org.apache.xmlgraphics</groupId>
  44. <artifactId>batik-all</artifactId>
  45. <version>${batik.version}</version>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>xalan</groupId>
  49. <artifactId>xalan</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <!--解决部署xml错误-->
  54. <dependency>
  55. <groupId>xerces</groupId>
  56. <artifactId>xercesImpl</artifactId>
  57. <version>${xerces.version}</version>
  58. </dependency>
  59. <!-- excel下载失败问题处理-->
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. <version>${commons.io.version}</version>
  64. </dependency>
  65. </dependencies>
  66. </project>