pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.framework</groupId>
  8. <artifactId>framework-cloud-nacos-dubbo</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.chelvc.cloud</groupId>
  13. <artifactId>maintain</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <properties>
  16. <uc-api.version>1.0.0-SNAPSHOT</uc-api.version>
  17. <vehicle-api.version>1.0.0-SNAPSHOT</vehicle-api.version>
  18. <framework-sms.version>1.0.0-RELEASE</framework-sms.version>
  19. <framework-redis.version>1.0.0-RELEASE</framework-redis.version>
  20. <framework-upload.version>1.0.0-RELEASE</framework-upload.version>
  21. <framework-oauth.version>1.0.0-RELEASE</framework-oauth.version>
  22. <framework-security.version>1.0.0-RELEASE</framework-security.version>
  23. <framework-location.version>1.0.0-RELEASE</framework-location.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. </dependency>
  31. <dependency>
  32. <groupId>com.chelvc.cloud</groupId>
  33. <artifactId>vehicle-api</artifactId>
  34. <version>${vehicle-api.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.chelvc.framework</groupId>
  38. <artifactId>framework-sms</artifactId>
  39. <version>${framework-sms.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.chelvc.framework</groupId>
  43. <artifactId>framework-redis</artifactId>
  44. <version>${framework-redis.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.chelvc.framework</groupId>
  48. <artifactId>framework-upload</artifactId>
  49. <version>${framework-upload.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.chelvc.framework</groupId>
  53. <artifactId>framework-oauth</artifactId>
  54. <version>${framework-oauth.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.chelvc.framework</groupId>
  58. <artifactId>framework-security</artifactId>
  59. <version>${framework-security.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.chelvc.framework</groupId>
  63. <artifactId>framework-location</artifactId>
  64. <version>${framework-location.version}</version>
  65. </dependency>
  66. </dependencies>
  67. </project>