pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>yudao-module-finance</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-cash-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. cash 包下,我们放收付款的功能模块。
  16. </description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-module-cash-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-module-infra-api</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-module-system-api</artifactId>
  31. <version>${revision}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-module-employee-api</artifactId>
  36. <version>${revision}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-module-customer-api</artifactId>
  41. <version>${revision}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.iocoder.boot</groupId>
  45. <artifactId>yudao-module-contract-api</artifactId>
  46. <version>${revision}</version>
  47. </dependency>
  48. <!-- 业务组件 -->
  49. <dependency>
  50. <groupId>cn.iocoder.boot</groupId>
  51. <artifactId>yudao-spring-boot-starter-biz-data-permission</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.iocoder.boot</groupId>
  55. <artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>cn.iocoder.boot</groupId>
  59. <artifactId>yudao-spring-boot-starter-biz-ip</artifactId>
  60. </dependency>
  61. <!-- Web 相关 -->
  62. <dependency>
  63. <groupId>cn.iocoder.boot</groupId>
  64. <artifactId>yudao-spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.iocoder.boot</groupId>
  68. <artifactId>yudao-spring-boot-starter-security</artifactId>
  69. </dependency>
  70. <!-- DB 相关 -->
  71. <dependency>
  72. <groupId>cn.iocoder.boot</groupId>
  73. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  74. </dependency>
  75. <!-- Test 测试相关 -->
  76. <dependency>
  77. <groupId>cn.iocoder.boot</groupId>
  78. <artifactId>yudao-spring-boot-starter-test</artifactId>
  79. </dependency>
  80. <!-- 工具类相关 -->
  81. <dependency>
  82. <groupId>cn.iocoder.boot</groupId>
  83. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  84. </dependency>
  85. </dependencies>
  86. </project>