pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <parent>
  7. <groupId>cn.itlym.platform</groupId>
  8. <artifactId>shoulder-platform-parent</artifactId>
  9. <version>1.0-SNAPSHOT</version><!-- shoulder-platform-version -->
  10. <relativePath>../shoulder-platform-common/shoulder-platform-parent/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>shoulder-gateway</artifactId>
  13. <modules>
  14. <module>shoulder-api-gateway</module>
  15. <module>shoulder-storage-gateway</module>
  16. </modules>
  17. <properties>
  18. <shoulder.version>0.8.1</shoulder.version><!-- shoulder-version -->
  19. <spring-boot.version>3.0.2</spring-boot.version>
  20. <spring-cloud.version>2023.0.1</spring-cloud.version>
  21. <spring-cloud-alibaba.version>2023.0.1.0</spring-cloud-alibaba.version>
  22. </properties>
  23. </project>