pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. <parent>
  7. <groupId>com.chelvc.platform</groupId>
  8. <artifactId>platform-cloud</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.chelvc.cloud</groupId>
  13. <artifactId>chelvc</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <properties>
  16. <uc-api.version>1.0.0-SNAPSHOT</uc-api.version>
  17. <uc-server.version>1.0.0-SNAPSHOT</uc-server.version>
  18. <admin.version>1.0.0-SNAPSHOT</admin.version>
  19. <platform-sms.version>1.0.0-RELEASE</platform-sms.version>
  20. <platform-redis.version>1.0.0-RELEASE</platform-redis.version>
  21. <platform-wechat.version>1.0.0-RELEASE</platform-wechat.version>
  22. <platform-security.version>1.0.0-RELEASE</platform-security.version>
  23. <platform-database.version>1.0.0-RELEASE</platform-database.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.chelvc.cloud</groupId>
  28. <artifactId>uc-api</artifactId>
  29. <version>${uc-api.version}</version>
  30. <optional>true</optional>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.chelvc.cloud</groupId>
  34. <artifactId>uc-server</artifactId>
  35. <version>${uc-server.version}</version>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.chelvc.cloud</groupId>
  40. <artifactId>admin</artifactId>
  41. <version>${admin.version}</version>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.chelvc.platform</groupId>
  46. <artifactId>platform-sms</artifactId>
  47. <version>${platform-sms.version}</version>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.chelvc.platform</groupId>
  52. <artifactId>platform-redis</artifactId>
  53. <version>${platform-redis.version}</version>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.chelvc.platform</groupId>
  58. <artifactId>platform-wechat</artifactId>
  59. <version>${platform-wechat.version}</version>
  60. <optional>true</optional>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.chelvc.platform</groupId>
  64. <artifactId>platform-security</artifactId>
  65. <version>${platform-security.version}</version>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.chelvc.platform</groupId>
  70. <artifactId>platform-database</artifactId>
  71. <version>${platform-database.version}</version>
  72. <optional>true</optional>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  77. </dependency>
  78. </dependencies>
  79. </project>