pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <groupId>com.xyzc</groupId>
  7. <artifactId>xyzc-common-bom</artifactId>
  8. <version>${revision}</version>
  9. <packaging>pom</packaging>
  10. <description>
  11. xyzc-common-bom 依赖项
  12. </description>
  13. <properties>
  14. <revision>1.0.0</revision>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <!-- 缓存服务 -->
  19. <dependency>
  20. <groupId>com.xyzc</groupId>
  21. <artifactId>xyzc-common-redis</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <!-- dubbo服务 -->
  25. <dependency>
  26. <groupId>com.xyzc</groupId>
  27. <artifactId>xyzc-common-dubbo</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <!-- sms服务 -->
  31. <dependency>
  32. <groupId>com.xyzc</groupId>
  33. <artifactId>xyzc-common-sms</artifactId>
  34. <version>${revision}</version>
  35. </dependency>
  36. <!-- 核心模块 -->
  37. <dependency>
  38. <groupId>com.xyzc</groupId>
  39. <artifactId>xyzc-common-core</artifactId>
  40. <version>${revision}</version>
  41. </dependency>
  42. <!-- 接口模块 -->
  43. <dependency>
  44. <groupId>com.xyzc</groupId>
  45. <artifactId>xyzc-common-doc</artifactId>
  46. <version>${revision}</version>
  47. </dependency>
  48. <!-- oss模块 -->
  49. <dependency>
  50. <groupId>com.xyzc</groupId>
  51. <artifactId>xyzc-common-oss</artifactId>
  52. <version>${revision}</version>
  53. </dependency>
  54. <!-- 数据库服务 -->
  55. <dependency>
  56. <groupId>com.xyzc</groupId>
  57. <artifactId>xyzc-common-mybatis</artifactId>
  58. <version>${revision}</version>
  59. </dependency>
  60. <!-- web服务 -->
  61. <dependency>
  62. <groupId>com.xyzc</groupId>
  63. <artifactId>xyzc-common-web</artifactId>
  64. <version>${revision}</version>
  65. </dependency>
  66. <!-- 微信认证模块 -->
  67. <dependency>
  68. <groupId>com.xyzc</groupId>
  69. <artifactId>xyzc-common-weixin</artifactId>
  70. <version>${revision}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.xyzc</groupId>
  74. <artifactId>xyzc-common-nacos</artifactId>
  75. <version>${revision}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.xyzc</groupId>
  79. <artifactId>xyzc-common-seata</artifactId>
  80. <version>${revision}</version>
  81. </dependency>
  82. </dependencies>
  83. </dependencyManagement>
  84. </project>