pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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.itlym.platform</groupId>
  7. <artifactId>shoulder-platform-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version><!-- shoulder-platform-version -->
  9. <relativePath>../shoulder-platform-parent/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>shoulder-platform-starter-micro</artifactId>
  13. <!--提供了微服务常用的技术-->
  14. <!-- 使用方式:
  15. <dependency>
  16. <groupId>cn.itlym.platform</groupId>
  17. <artifactId>shoulder-platform-starter-micro</artifactId>
  18. </dependency>
  19. -->
  20. <dependencies>
  21. <!-- 数据库 -->
  22. <dependency>
  23. <groupId>cn.itlym.platform</groupId>
  24. <artifactId>shoulder-platform-starter-db</artifactId>
  25. <version>${shoulder-platform.version}</version>
  26. </dependency>
  27. <!-- 服务注册与发现 -->
  28. <dependency>
  29. <groupId>cn.itlym.platform</groupId>
  30. <artifactId>shoulder-platform-starter-discovery-client</artifactId>
  31. <version>${shoulder-platform.version}</version>
  32. </dependency>
  33. <!-- 配置动态刷新 -->
  34. <dependency>
  35. <groupId>cn.itlym.platform</groupId>
  36. <artifactId>shoulder-platform-starter-config-client</artifactId>
  37. <version>${shoulder-platform.version}</version>
  38. </dependency>
  39. <!-- 消息队列 -->
  40. <dependency>
  41. <groupId>cn.itlym.platform</groupId>
  42. <artifactId>shoulder-platform-starter-mq</artifactId>
  43. <version>${shoulder-platform.version}</version>
  44. </dependency>
  45. <!-- 接口提供能力 -->
  46. <dependency>
  47. <groupId>cn.itlym.platform</groupId>
  48. <artifactId>shoulder-platform-starter-rpc-server</artifactId>
  49. <version>${shoulder-platform.version}</version>
  50. </dependency>
  51. <!-- 接口消费能力 -->
  52. <dependency>
  53. <groupId>cn.itlym.platform</groupId>
  54. <artifactId>shoulder-platform-starter-rpc-client</artifactId>
  55. <version>${shoulder-platform.version}</version>
  56. </dependency>
  57. <!-- 分布式定时任务 -->
  58. <!--<dependency>
  59. <groupId>cn.itlym.platform</groupId>
  60. <artifactId>shoulder-platform-starter-job</artifactId>
  61. <version>${shoulder-platform.version}</version>
  62. </dependency>-->
  63. </dependencies>
  64. </project>