pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <groupId>cn.iocoder.boot</groupId>
  7. <artifactId>yudao</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-order</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>订单管理模块(交付/评审/出货计划)</description>
  15. <dependencies>
  16. <!-- 系统基础能力:用户、租户等 -->
  17. <dependency>
  18. <groupId>cn.iocoder.boot</groupId>
  19. <artifactId>yudao-module-system</artifactId>
  20. <version>${revision}</version>
  21. </dependency>
  22. <!-- BPM 工作流能力 -->
  23. <dependency>
  24. <groupId>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-module-bpm</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. <!-- 业务组件 -->
  29. <dependency>
  30. <groupId>cn.iocoder.boot</groupId>
  31. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  32. </dependency>
  33. <!-- Web 能力 -->
  34. <dependency>
  35. <groupId>cn.iocoder.boot</groupId>
  36. <artifactId>yudao-spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-spring-boot-starter-security</artifactId>
  41. </dependency>
  42. <!-- DB 能力 -->
  43. <dependency>
  44. <groupId>cn.iocoder.boot</groupId>
  45. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  46. </dependency>
  47. <!-- 测试 -->
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>