pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <parent>
  6. <artifactId>jeecg-module-system</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.4.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-system-start</artifactId>
  12. <dependencies>
  13. <!-- SYSTEM 系统管理模块 -->
  14. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-system-biz</artifactId>
  17. <version>${jeecgboot.version}</version>
  18. </dependency>
  19. <!-- DEMO 示例模块 -->
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>module-iTDM</artifactId>
  23. <version>${jeecgboot.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.jeecgframework.boot</groupId>
  27. <artifactId>module-ACTIVITI</artifactId>
  28. <version>${jeecgboot.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.activiti</groupId>
  32. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  33. <version>6.0.0</version>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>org.mybatis</groupId>
  37. <artifactId>mybatis</artifactId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>