pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.jeeplus</groupId>
  7. <artifactId>jeeplus-plugins</artifactId>
  8. <version>9.0</version>
  9. </parent>
  10. <properties>
  11. <flowable.version>7.0.1</flowable.version>
  12. </properties>
  13. <artifactId>jeeplus-flowable</artifactId>
  14. <packaging>jar</packaging>
  15. <name>jeeplus-flowable</name>
  16. <description>bpm project for jeeplus</description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.jeeplus</groupId>
  20. <artifactId>jeeplus-admin</artifactId>
  21. <version>${project.parent.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jeeplus</groupId>
  25. <artifactId>jeeplus-form</artifactId>
  26. <version>${project.parent.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.jeeplus</groupId>
  30. <artifactId>jeeplus-mail</artifactId>
  31. <version>${project.parent.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-fileupload</groupId>
  35. <artifactId>commons-fileupload</artifactId>
  36. <version>1.5</version>
  37. </dependency>
  38. <!-- <dependency>-->
  39. <!-- <groupId>javax.servlet</groupId>-->
  40. <!-- <artifactId>javax.servlet-api</artifactId>-->
  41. <!-- <version>4.0.1</version>-->
  42. <!-- </dependency>-->
  43. <dependency>
  44. <groupId>org.flowable</groupId>
  45. <artifactId>flowable-spring-boot-starter</artifactId>
  46. <version>${flowable.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.flowable</groupId>
  50. <artifactId>flowable-bpmn-model</artifactId>
  51. <version>${flowable.version}</version>
  52. </dependency>
  53. <!-- flowable json 转换 -->
  54. <dependency>
  55. <groupId>org.flowable</groupId>
  56. <artifactId>flowable-json-converter</artifactId>
  57. <version>6.8.0</version>
  58. </dependency>
  59. <!-- svg转png图片工具-->
  60. <dependency>
  61. <groupId>org.apache.xmlgraphics</groupId>
  62. <artifactId>batik-all</artifactId>
  63. <version>1.10</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>xalan</groupId>
  67. <artifactId>xalan</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. </dependencies>
  72. </project>