pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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-module-member</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-member-impl</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${artifactId}</name>
  14. <description>
  15. member 模块,我们放会员业务。
  16. 例如说:会员中心等等
  17. </description>
  18. <dependencies>
  19. <!-- 业务组件 -->
  20. <dependency>
  21. <groupId>cn.iocoder.boot</groupId>
  22. <artifactId>yudao-core-service</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.iocoder.boot</groupId>
  26. <artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-spring-boot-starter-biz-sms</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-spring-boot-starter-biz-weixin</artifactId>
  35. </dependency>
  36. <!-- Web 相关 -->
  37. <dependency>
  38. <groupId>cn.iocoder.boot</groupId>
  39. <artifactId>yudao-spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.iocoder.boot</groupId>
  43. <artifactId>yudao-spring-boot-starter-security</artifactId>
  44. </dependency>
  45. <!-- DB 相关 -->
  46. <dependency>
  47. <groupId>cn.iocoder.boot</groupId>
  48. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.iocoder.boot</groupId>
  52. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  53. </dependency>
  54. <!-- Config 配置中心相关 -->
  55. <dependency>
  56. <groupId>cn.iocoder.boot</groupId>
  57. <artifactId>yudao-spring-boot-starter-config</artifactId>
  58. </dependency>
  59. <!-- Job 定时任务相关 -->
  60. <!-- 消息队列相关 -->
  61. <dependency>
  62. <groupId>cn.iocoder.boot</groupId>
  63. <artifactId>yudao-spring-boot-starter-mq</artifactId>
  64. </dependency>
  65. <!-- 服务保障相关 -->
  66. <dependency>
  67. <groupId>cn.iocoder.boot</groupId>
  68. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  69. </dependency>
  70. <!-- 监控相关 -->
  71. <dependency>
  72. <groupId>cn.iocoder.boot</groupId>
  73. <artifactId>yudao-spring-boot-starter-monitor</artifactId>
  74. </dependency>
  75. <!-- Test 测试相关 -->
  76. <dependency>
  77. <groupId>cn.iocoder.boot</groupId>
  78. <artifactId>yudao-spring-boot-starter-test</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <!-- 工具类相关 -->
  82. </dependencies>
  83. <build>
  84. <!-- 设置构建的 jar 包名 -->
  85. <finalName>${artifactId}</finalName>
  86. <plugins>
  87. <!-- 打包 -->
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <configuration>
  92. <fork>true</fork>
  93. </configuration>
  94. <executions>
  95. <execution>
  96. <goals>
  97. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>