pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.citu</groupId>
  6. <artifactId>menduner</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>menduner-reward-biz</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.artifactId}</name>
  12. <description>
  13. 门墩儿忠诚奖励 biz
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.citu</groupId>
  18. <artifactId>menduner-reward-api</artifactId>
  19. <version>${revision}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.jeasy</groupId>
  23. <artifactId>easy-rules-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.jeasy</groupId>
  27. <artifactId>easy-rules-mvel</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.citu</groupId>
  31. <artifactId>citu-spring-boot-starter-biz-tenant</artifactId>
  32. </dependency>
  33. <!-- DB 相关 -->
  34. <dependency>
  35. <groupId>com.citu</groupId>
  36. <artifactId>citu-spring-boot-starter-mybatis</artifactId>
  37. </dependency>
  38. <!-- RPC 远程调用相关 -->
  39. <dependency>
  40. <groupId>com.citu</groupId>
  41. <artifactId>citu-spring-boot-starter-rpc</artifactId>
  42. </dependency>
  43. <!-- Registry 注册中心相关 -->
  44. <dependency>
  45. <groupId>com.alibaba.cloud</groupId>
  46. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  47. </dependency>
  48. <!-- Config 配置中心相关 -->
  49. <dependency>
  50. <groupId>com.alibaba.cloud</groupId>
  51. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  52. </dependency>
  53. <!-- Test 测试相关 -->
  54. <dependency>
  55. <groupId>com.citu</groupId>
  56. <artifactId>citu-spring-boot-starter-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <!-- 监控相关 -->
  60. <dependency>
  61. <groupId>com.citu</groupId>
  62. <artifactId>citu-spring-boot-starter-monitor</artifactId>
  63. </dependency>
  64. <!-- 工具类相关 -->
  65. <dependency>
  66. <groupId>com.citu</groupId>
  67. <artifactId>citu-spring-boot-starter-excel</artifactId>
  68. </dependency>
  69. </dependencies>
  70. </project>