pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <!-- flowable -->
  21. <dependency>
  22. <groupId>org.flowable</groupId>
  23. <artifactId>flowable-spring-boot-starter-process</artifactId>
  24. <version>${flowable.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.flowable</groupId>
  28. <artifactId>flowable-bpmn-converter</artifactId>
  29. <version>${flowable.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.flowable</groupId>
  33. <artifactId>flowable-json-converter</artifactId>
  34. <version>${flowable.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.flowable</groupId>
  38. <artifactId>flowable-bpmn-layout</artifactId>
  39. <version>${flowable.version}</version>
  40. </dependency>
  41. </dependencies>
  42. </project>