pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <!-- sms服务 -->
  25. <dependency>
  26. <groupId>com.xyzc</groupId>
  27. <artifactId>xyzc-common-sms</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <!-- 核心模块 -->
  31. <dependency>
  32. <groupId>com.xyzc</groupId>
  33. <artifactId>xyzc-common-core</artifactId>
  34. <version>${revision}</version>
  35. </dependency>
  36. <!-- 接口模块 -->
  37. <dependency>
  38. <groupId>com.xyzc</groupId>
  39. <artifactId>xyzc-common-doc</artifactId>
  40. <version>${revision}</version>
  41. </dependency>
  42. <!-- 数据库服务 -->
  43. <dependency>
  44. <groupId>com.xyzc</groupId>
  45. <artifactId>xyzc-common-mybatis</artifactId>
  46. <version>${revision}</version>
  47. </dependency>
  48. <!-- web服务 -->
  49. <dependency>
  50. <groupId>com.xyzc</groupId>
  51. <artifactId>xyzc-common-web</artifactId>
  52. <version>${revision}</version>
  53. </dependency>
  54. <!-- 微信认证模块 -->
  55. <dependency>
  56. <groupId>com.xyzc</groupId>
  57. <artifactId>xyzc-common-weixin</artifactId>
  58. <version>${revision}</version>
  59. </dependency>
  60. </dependencies>
  61. </dependencyManagement>
  62. </project>