pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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-member</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>business-member-application</artifactId>
  12. <name>business-member-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. <!-- Bean 模块(Application 直接引用 Entity/DTO/VO/Convert) -->
  21. <dependency>
  22. <groupId>com.xinghuacuntravel</groupId>
  23. <artifactId>business-member-bean</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.xinghuacuntravel</groupId>
  28. <artifactId>business-member-api</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <!-- Service 模块依赖 -->
  32. <dependency>
  33. <groupId>com.xinghuacuntravel</groupId>
  34. <artifactId>business-member-service</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <!-- Domain Service 继承 BaseInterface,须显式引入避免 clean 后编译 classpath 缺失 -->
  38. <dependency>
  39. <groupId>org.jeesharp.boot</groupId>
  40. <artifactId>jeesharp-spring-boot-starter-mybatis</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.jeesharp.boot</groupId>
  44. <artifactId>jeesharp-spring-boot-starter-justauth</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.jeesharp.boot</groupId>
  48. <artifactId>jeesharp-core</artifactId>
  49. </dependency>
  50. <!-- 与 business-wechat / WxJava 版本一致,供手机号解析类型与 WxErrorException -->
  51. <dependency>
  52. <groupId>com.github.binarywang</groupId>
  53. <artifactId>weixin-java-miniapp</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.xinghuacuntravel</groupId>
  57. <artifactId>business-wechat</artifactId>
  58. <version>1.0-SNAPSHOT</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.xinghuacuntravel</groupId>
  63. <artifactId>business-content-security-api</artifactId>
  64. <version>${project.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.jeesharp.boot</groupId>
  68. <artifactId>jeesharp-spring-boot-starter-message</artifactId>
  69. </dependency>
  70. </dependencies>
  71. </project>