pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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>Storage-Module</artifactId>
  11. <name>Storage-Module</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.7</maven.compiler.source>
  17. <maven.compiler.target>1.7</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <!--nacos-->
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  24. </dependency>
  25. <!--seata-->
  26. <dependency>
  27. <groupId>com.alibaba.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <artifactId>seata-all</artifactId>
  32. <groupId>io.seata</groupId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.seata</groupId>
  38. <artifactId>seata-all</artifactId>
  39. <version>0.9.0</version>
  40. </dependency>
  41. <!--feign-->
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-starter-openfeign</artifactId>
  45. </dependency>
  46. <!--web-actuator-->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-web</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-actuator</artifactId>
  54. </dependency>
  55. <!--mysql-druid-->
  56. <dependency>
  57. <groupId>mysql</groupId>
  58. <artifactId>mysql-connector-java</artifactId>
  59. <version>5.1.37</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>druid-spring-boot-starter</artifactId>
  64. <version>1.1.10</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mybatis.spring.boot</groupId>
  68. <artifactId>mybatis-spring-boot-starter</artifactId>
  69. <version>2.0.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. <version>1.18.28</version>
  80. <optional>true</optional>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  85. <plugins>
  86. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  87. <plugin>
  88. <artifactId>maven-clean-plugin</artifactId>
  89. <version>3.1.0</version>
  90. </plugin>
  91. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  92. <plugin>
  93. <artifactId>maven-resources-plugin</artifactId>
  94. <version>3.0.2</version>
  95. </plugin>
  96. <plugin>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <version>3.8.0</version>
  99. </plugin>
  100. <plugin>
  101. <artifactId>maven-surefire-plugin</artifactId>
  102. <version>2.22.1</version>
  103. </plugin>
  104. <plugin>
  105. <artifactId>maven-jar-plugin</artifactId>
  106. <version>3.0.2</version>
  107. </plugin>
  108. <plugin>
  109. <artifactId>maven-install-plugin</artifactId>
  110. <version>2.5.2</version>
  111. </plugin>
  112. <plugin>
  113. <artifactId>maven-deploy-plugin</artifactId>
  114. <version>2.8.2</version>
  115. </plugin>
  116. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  117. <plugin>
  118. <artifactId>maven-site-plugin</artifactId>
  119. <version>3.7.1</version>
  120. </plugin>
  121. <plugin>
  122. <artifactId>maven-project-info-reports-plugin</artifactId>
  123. <version>3.0.0</version>
  124. </plugin>
  125. </plugins>
  126. </pluginManagement>
  127. </build>
  128. </project>