pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <dependency>
  20. <groupId>cn.iocoder.boot</groupId>
  21. <artifactId>yudao-module-member-api</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <!-- 业务组件 -->
  25. <dependency>
  26. <groupId>cn.iocoder.boot</groupId>
  27. <artifactId>yudao-core-service</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.iocoder.boot</groupId>
  31. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-spring-boot-starter-biz-weixin</artifactId>
  36. </dependency>
  37. <!-- Web 相关 -->
  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. <dependency>
  48. <groupId>cn.iocoder.boot</groupId>
  49. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  50. </dependency>
  51. <!-- 消息队列相关 -->
  52. <dependency>
  53. <groupId>cn.iocoder.boot</groupId>
  54. <artifactId>yudao-spring-boot-starter-mq</artifactId>
  55. </dependency>
  56. <!-- Test 测试相关 -->
  57. <dependency>
  58. <groupId>cn.iocoder.boot</groupId>
  59. <artifactId>yudao-spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <!-- 工具类相关 -->
  63. </dependencies>
  64. <build>
  65. <!-- 设置构建的 jar 包名 -->
  66. <finalName>${artifactId}</finalName>
  67. <plugins>
  68. <!-- 打包 -->
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <configuration>
  73. <fork>true</fork>
  74. </configuration>
  75. <executions>
  76. <execution>
  77. <goals>
  78. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>