pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xinghuacuntravel</groupId>
  8. <artifactId>business-coupon</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>business-coupon-application</artifactId>
  12. <name>business-coupon-application</name>
  13. <description>优惠券模块 - Application 层(编排领券、积分兑换等,依赖会员领域服务)</description>
  14. <properties>
  15. <maven.compiler.source>21</maven.compiler.source>
  16. <maven.compiler.target>21</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.xinghuacuntravel</groupId>
  22. <artifactId>business-coupon-api</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.xinghuacuntravel</groupId>
  27. <artifactId>business-coupon-service</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <!-- 会员 Entity / MemberOrderDisplay 等(MemberService 接口签名依赖,须显式引入避免 IDE/部分部署 classpath 缺失) -->
  31. <dependency>
  32. <groupId>com.xinghuacuntravel</groupId>
  33. <artifactId>business-member-bean</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <!-- 会员主数据(发券校验、列表补全) -->
  37. <dependency>
  38. <groupId>com.xinghuacuntravel</groupId>
  39. <artifactId>business-member-service</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <!-- 积分兑换扣减(跨模块 API) -->
  43. <dependency>
  44. <groupId>com.xinghuacuntravel</groupId>
  45. <artifactId>business-member-api</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.xinghuacuntravel</groupId>
  50. <artifactId>business-common-api</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.xinghuacuntravel</groupId>
  55. <artifactId>business-wechat</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.jeesharp.boot</groupId>
  60. <artifactId>jeesharp-core</artifactId>
  61. </dependency>
  62. </dependencies>
  63. </project>