pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.12.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.chinaitop</groupId>
  12. <artifactId>depot-smart-storage-qinghai</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>depot-smart-storage-qinghai</name>
  15. <description>z</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <spring-cloud.version>Hoxton.SR12</spring-cloud.version>
  21. <skipTests>true</skipTests>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-config</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-boot-starter</artifactId>
  48. <version>3.4.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-data-redis</artifactId>
  53. </dependency>
  54. <!-- swagger2 -->
  55. <dependency>
  56. <groupId>io.springfox</groupId>
  57. <artifactId>springfox-swagger2</artifactId>
  58. <version>2.9.2</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.springfox</groupId>
  62. <artifactId>springfox-swagger-ui</artifactId>
  63. <version>2.9.2</version>
  64. </dependency>
  65. <!--add swagger2 by hasan-->
  66. <dependency>
  67. <groupId>com.spring4all</groupId>
  68. <artifactId>swagger-spring-boot-starter</artifactId>
  69. <version>1.9.0.RELEASE</version>
  70. </dependency>
  71. <!--添加webservice-->
  72. <!--<dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-web-services</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.cxf</groupId>
  78. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  79. <version>3.2.4</version>
  80. </dependency>-->
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. <version>1.2.37</version>
  89. </dependency>
  90. <!--minio上传文件客户端-->
  91. <dependency>
  92. <groupId>io.minio</groupId>
  93. <artifactId>minio</artifactId>
  94. <version>8.5.2</version>
  95. <exclusions>
  96. <exclusion>
  97. <artifactId>okhttp</artifactId>
  98. <groupId>com.squareup.okhttp3</groupId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.squareup.okhttp3</groupId>
  104. <artifactId>okhttp</artifactId>
  105. <version>4.10.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>cn.hutool</groupId>
  109. <artifactId>hutool-all</artifactId>
  110. <version>5.8.12</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-actuator</artifactId>
  115. </dependency>
  116. </dependencies>
  117. <dependencyManagement>
  118. <dependencies>
  119. <dependency>
  120. <groupId>org.springframework.cloud</groupId>
  121. <artifactId>spring-cloud-dependencies</artifactId>
  122. <version>${spring-cloud.version}</version>
  123. <type>pom</type>
  124. <scope>import</scope>
  125. </dependency>
  126. </dependencies>
  127. </dependencyManagement>
  128. <build>
  129. <finalName>${project.artifactId}</finalName>
  130. <plugins>
  131. <plugin>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-maven-plugin</artifactId>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>