pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <artifactId>jeecg-boot-module-activiti</artifactId>
  6. <version>2.1.4</version>
  7. <parent>
  8. <groupId>org.jeecgframework.boot</groupId>
  9. <artifactId>jeecg-boot-parent</artifactId>
  10. <version>2.1.4</version>
  11. </parent>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <properties>
  31. <activiti.version>5.22.0</activiti.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.jeecgframework.boot</groupId>
  36. <artifactId>jeecg-boot-base-common</artifactId>
  37. </dependency>
  38. <!--<dependency>
  39. <groupId>org.activiti</groupId>
  40. <artifactId>activiti-spring</artifactId>
  41. <version>${activiti.version}</version>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>org.mybatis</groupId>
  45. <artifactId>mybatis</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>-->
  49. <!-- Activiti 启动器 -->
  50. <dependency>
  51. <groupId>org.activiti</groupId>
  52. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  53. <version>${activiti.version}</version>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>org.mybatis</groupId>
  57. <artifactId>mybatis</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- Activiti 流程图 -->
  62. <dependency>
  63. <groupId>org.activiti</groupId>
  64. <artifactId>activiti-diagram-rest</artifactId>
  65. <version>${activiti.version}</version>
  66. </dependency>
  67. <!-- Activiti 在线设计 -->
  68. <dependency>
  69. <groupId>org.activiti</groupId>
  70. <artifactId>activiti-modeler</artifactId>
  71. <version>${activiti.version}</version>
  72. </dependency>
  73. </dependencies>
  74. <!-- <build>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. </plugin>
  80. </plugins>
  81. </build> -->
  82. </project>