pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>admin</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <properties>
  16. <uc-api.version>1.0.0-SNAPSHOT</uc-api.version>
  17. <platform-redis.version>1.0.0-RELEASE</platform-redis.version>
  18. <platform-security.version>1.0.0-RELEASE</platform-security.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.chelvc.cloud</groupId>
  23. <artifactId>uc-api</artifactId>
  24. <version>${uc-api.version}</version>
  25. <optional>true</optional>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.chelvc.platform</groupId>
  29. <artifactId>platform-redis</artifactId>
  30. <version>${platform-redis.version}</version>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.chelvc.platform</groupId>
  35. <artifactId>platform-security</artifactId>
  36. <version>${platform-security.version}</version>
  37. <optional>true</optional>
  38. </dependency>
  39. </dependencies>
  40. </project>