pom.xml 1.8 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. <groupId>org.example</groupId>
  7. <artifactId>nacosParent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>offer-service</module>
  12. <module>comsumer-service</module>
  13. </modules>
  14. <dependencyManagement>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.alibaba.cloud</groupId>
  18. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  19. <version>2021.0.1.0</version>
  20. <type>pom</type>
  21. <scope>import</scope>
  22. </dependency>
  23. <!--springCloud的包管理器-->
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-dependencies</artifactId>
  27. <version>2021.0.1</version>
  28. <type>pom</type>
  29. <scope>import</scope>
  30. </dependency>
  31. <!--springBoot的启动器的包管理器-->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-dependencies</artifactId>
  35. <version>2.6.5</version>
  36. <type>pom</type>
  37. <scope>import</scope>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. <properties>
  42. <maven.compiler.source>8</maven.compiler.source>
  43. <maven.compiler.target>8</maven.compiler.target>
  44. </properties>
  45. </project>