pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.2.0</version>
  7. <parent>
  8. <groupId>org.jeecgframework.boot</groupId>
  9. <artifactId>jeecg-boot-parent</artifactId>
  10. <version>2.0.2</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>cn.com.ctop</groupId>
  40. <artifactId>module-common</artifactId>
  41. <version>2.0.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.eclipse.persistence</groupId>
  45. <artifactId>org.eclipse.persistence.jpa</artifactId>
  46. <version>2.6.0</version>
  47. </dependency>
  48. <!--<dependency>
  49. <groupId>org.activiti</groupId>
  50. <artifactId>activiti-spring</artifactId>
  51. <version>${activiti.version}</version>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.mybatis</groupId>
  55. <artifactId>mybatis</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>-->
  59. <!-- Activiti 启动器 -->
  60. <dependency>
  61. <groupId>org.activiti</groupId>
  62. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  63. <version>${activiti.version}</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.mybatis</groupId>
  67. <artifactId>mybatis</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <!-- Activiti 流程图 -->
  72. <dependency>
  73. <groupId>org.activiti</groupId>
  74. <artifactId>activiti-diagram-rest</artifactId>
  75. <version>${activiti.version}</version>
  76. </dependency>
  77. <!-- Activiti 在线设计 -->
  78. <dependency>
  79. <groupId>org.activiti</groupId>
  80. <artifactId>activiti-modeler</artifactId>
  81. <version>${activiti.version}</version>
  82. </dependency>
  83. </dependencies>
  84. <!-- <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. </plugin>
  90. </plugins>
  91. </build> -->
  92. </project>