pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <packaging>pom</packaging>
  7. <parent>
  8. <groupId>com.flow</groupId>
  9. <artifactId>lowflow</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. <relativePath>../pom.xml</relativePath>
  12. </parent>
  13. <artifactId>flow-workflow</artifactId>
  14. <name>workflow 工作流模块</name>
  15. <description>工作流依赖设置处理</description>
  16. <modules>
  17. <module>flow-workflow-api</module>
  18. <module>flow-workflow-biz</module>
  19. <module>flow-workflow-controller</module>
  20. <module>flow-workflow-entity</module>
  21. </modules>
  22. <properties>
  23. <maven.compiler.source>8</maven.compiler.source>
  24. <maven.compiler.target>8</maven.compiler.target>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. </properties>
  27. <dependencies>
  28. <!--core-->
  29. <dependency>
  30. <groupId>com.flow</groupId>
  31. <artifactId>flow-common-core</artifactId>
  32. <version>0.0.1-SNAPSHOT</version>
  33. </dependency>
  34. <!--mybatis-->
  35. <dependency>
  36. <groupId>com.flow</groupId>
  37. <artifactId>flow-common-mybatis-starter</artifactId>
  38. <version>0.0.1-SNAPSHOT</version>
  39. </dependency>
  40. <!--flowable-->
  41. <dependency>
  42. <groupId>com.flow</groupId>
  43. <artifactId>flow-common-flowable-starter</artifactId>
  44. <version>0.0.1-SNAPSHOT</version>
  45. </dependency>
  46. <!--cache-->
  47. <dependency>
  48. <groupId>com.flow</groupId>
  49. <artifactId>flow-common-cache-starter</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. <!--redis-->
  53. <dependency>
  54. <groupId>com.flow</groupId>
  55. <artifactId>flow-common-redis-starter</artifactId>
  56. <version>0.0.1-SNAPSHOT</version>
  57. </dependency>
  58. <!--system-->
  59. <dependency>
  60. <groupId>com.flow</groupId>
  61. <artifactId>flow-system-api</artifactId>
  62. <version>0.0.1-SNAPSHOT</version>
  63. </dependency>
  64. </dependencies>
  65. </project>