pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>springcloudalibabaVIP23</artifactId>
  6. <groupId>com.sf</groupId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>cloudalibaba-provider-order83</artifactId>
  11. <name>cloudalibaba-provider-order83</name>
  12. <!-- FIXME change it to the project's website -->
  13. <url>http://www.example.com</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <!-- 引入公共的项目模块-->
  21. <dependency>
  22. <groupId>com.sf</groupId>
  23. <artifactId>cloud-api-commons</artifactId>
  24. <version>1.0-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>4.12</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <!-- SpringCloud ailibaba nacos-->
  33. <dependency>
  34. <groupId>com.alibaba.cloud</groupId>
  35. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-actuator</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-devtools</artifactId>
  48. <scope>runtime</scope>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.projectlombok</groupId>
  53. <artifactId>lombok</artifactId>
  54. <version>1.18.28</version>
  55. <optional>true</optional>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  65. <plugins>
  66. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  67. <plugin>
  68. <artifactId>maven-clean-plugin</artifactId>
  69. <version>3.1.0</version>
  70. </plugin>
  71. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  72. <plugin>
  73. <artifactId>maven-resources-plugin</artifactId>
  74. <version>3.0.2</version>
  75. </plugin>
  76. <plugin>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>3.8.0</version>
  79. </plugin>
  80. <plugin>
  81. <artifactId>maven-surefire-plugin</artifactId>
  82. <version>2.22.1</version>
  83. </plugin>
  84. <plugin>
  85. <artifactId>maven-jar-plugin</artifactId>
  86. <version>3.0.2</version>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-install-plugin</artifactId>
  90. <version>2.5.2</version>
  91. </plugin>
  92. <plugin>
  93. <artifactId>maven-deploy-plugin</artifactId>
  94. <version>2.8.2</version>
  95. </plugin>
  96. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  97. <plugin>
  98. <artifactId>maven-site-plugin</artifactId>
  99. <version>3.7.1</version>
  100. </plugin>
  101. <plugin>
  102. <artifactId>maven-project-info-reports-plugin</artifactId>
  103. <version>3.0.0</version>
  104. </plugin>
  105. </plugins>
  106. </pluginManagement>
  107. </build>
  108. </project>