pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <groupId>com.flow</groupId>
  8. <artifactId>flow-common</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>flow-common-flowable-starter</artifactId>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <flowable.version>6.8.0</flowable.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.apache.httpcomponents</groupId>
  22. <artifactId>httpclient</artifactId>
  23. </dependency>
  24. <!-- flowable -->
  25. <dependency>
  26. <groupId>org.flowable</groupId>
  27. <artifactId>flowable-spring-boot-starter-process</artifactId>
  28. <version>${flowable.version}</version>
  29. </dependency>
  30. <!--<dependency>
  31. <groupId>org.flowable</groupId>
  32. <artifactId>flowable-jms-spring-executor</artifactId>
  33. <version>${flowable.version}</version>
  34. </dependency>-->
  35. <dependency>
  36. <groupId>org.flowable</groupId>
  37. <artifactId>flowable-bpmn-converter</artifactId>
  38. <version>${flowable.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.flowable</groupId>
  42. <artifactId>flowable-json-converter</artifactId>
  43. <version>${flowable.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.flowable</groupId>
  47. <artifactId>flowable-bpmn-layout</artifactId>
  48. <version>${flowable.version}</version>
  49. </dependency>
  50. </dependencies>
  51. </project>