pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>hsweb-system-workflow</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-system-workflow-flowable-modeler</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.hswebframework.web</groupId>
  15. <artifactId>hsweb-system-workflow-flowable</artifactId>
  16. <version>${project.version}</version>
  17. <exclusions>
  18. <exclusion>
  19. <artifactId>commons-io</artifactId>
  20. <groupId>commons-io</groupId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.flowable</groupId>
  26. <artifactId>flowable-spring-boot-starter-basic</artifactId>
  27. <version>${flowable.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.flowable</groupId>
  31. <artifactId>flowable-json-converter</artifactId>
  32. <version>${flowable.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.flowable</groupId>
  36. <artifactId>flowable-bpmn-converter</artifactId>
  37. <version>${flowable.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.flowable</groupId>
  41. <artifactId>flowable-explorer</artifactId>
  42. <version>${flowable.version}</version>
  43. <exclusions>
  44. <exclusion>
  45. <artifactId>vaadin</artifactId>
  46. <groupId>com.vaadin</groupId>
  47. </exclusion>
  48. <exclusion>
  49. <artifactId>dcharts-widget</artifactId>
  50. <groupId>org.vaadin.addons</groupId>
  51. </exclusion>
  52. <exclusion>
  53. <artifactId>slf4j-log4j12</artifactId>
  54. <groupId>org.slf4j</groupId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.flowable</groupId>
  60. <artifactId>flowable-simple-workflow</artifactId>
  61. <version>${flowable.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.h2database</groupId>
  65. <artifactId>h2</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>druid</artifactId>
  71. <version>1.0.26</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-web</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.servlet</groupId>
  80. <artifactId>servlet-api</artifactId>
  81. <version>3.0-alpha-1</version>
  82. </dependency>
  83. </dependencies>
  84. </project>