pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-boot</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>framework-cloud-nacos</artifactId>
  13. <version>1.0.0-RELEASE</version>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <nacos-client.version>2.0.3</nacos-client.version>
  17. <framework-cloud.version>1.0.0-RELEASE</framework-cloud.version>
  18. <framework-nacos.version>1.0.0-RELEASE</framework-nacos.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.alibaba.nacos</groupId>
  23. <artifactId>nacos-client</artifactId>
  24. <version>${nacos-client.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.chelvc.framework</groupId>
  28. <artifactId>framework-cloud</artifactId>
  29. <version>${framework-cloud.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.chelvc.framework</groupId>
  33. <artifactId>framework-nacos</artifactId>
  34. <version>${framework-nacos.version}</version>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>com.alibaba.nacos</groupId>
  38. <artifactId>nacos-client</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. </dependencies>
  43. </project>