pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.efunbox</groupId>
  6. <artifactId>audio</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>audio</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <!--<version>1.3.5.RELEASE</version>-->
  15. <version>1.5.7.RELEASE</version>
  16. <!--1.5.7会报feign错误-->
  17. <relativePath/> <!-- lookup parent from repository -->
  18. </parent>
  19. <!--<parent>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-parent</artifactId>
  22. <version>2.1.3.RELEASE</version>
  23. <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;
  24. </parent>-->
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <java.version>1.8</java.version>
  29. </properties>
  30. <dependencies>
  31. <!-- springBoot 依赖-->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. <version>5.1.21</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-data-jpa</artifactId>
  53. </dependency>
  54. <!-- 引入 spring-boot-starter-redis -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-redis</artifactId>
  58. <version>1.3.2.RELEASE</version>
  59. </dependency>
  60. <!-- springCloud 依赖-->
  61. <dependency>
  62. <groupId>org.springframework.cloud</groupId>
  63. <artifactId>spring-cloud-starter-hystrix</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.cloud</groupId>
  67. <artifactId>spring-cloud-starter-feign</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.cloud</groupId>
  71. <artifactId>spring-cloud-starter-eureka</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.cloud</groupId>
  75. <artifactId>spring-cloud-config-client</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-starter-config</artifactId>
  80. </dependency>
  81. <!--<dependency>-->
  82. <!--<groupId>org.springframework.boot</groupId>-->
  83. <!--<artifactId>spring-boot-starter-actuator</artifactId>-->
  84. <!--</dependency>-->
  85. <!--<dependency>-->
  86. <!--<groupId>org.springframework.cloud</groupId>-->
  87. <!--<artifactId>spring-cloud-starter-hystrix</artifactId>-->
  88. <!--</dependency>-->
  89. <!--log 相关-->
  90. <dependency>
  91. <groupId>log4j</groupId>
  92. <artifactId>log4j</artifactId>
  93. <version>1.2.16</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>slf4j-api</artifactId>
  98. <version>1.7.21</version>
  99. </dependency>
  100. <!--自动化 get set -->
  101. <dependency>
  102. <groupId>org.projectlombok</groupId>
  103. <artifactId>lombok</artifactId>
  104. <version>1.16.10</version>
  105. </dependency>
  106. <!--fastjson 引入 -->
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. <version>1.2.38</version>
  111. </dependency>
  112. <!--阿里云oss鉴权 -->
  113. <dependency>
  114. <groupId>com.aliyun.oss</groupId>
  115. <artifactId>aliyun-sdk-oss</artifactId>
  116. <version>2.8.1</version>
  117. </dependency>
  118. <!--阿里云STS -->
  119. <dependency>
  120. <groupId>com.aliyun</groupId>
  121. <artifactId>aliyun-java-sdk-sts</artifactId>
  122. <version>2.1.6</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.aliyun</groupId>
  126. <artifactId>aliyun-java-sdk-core</artifactId>
  127. <version>2.1.7</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.poi</groupId>
  131. <artifactId>poi</artifactId>
  132. <version>3.16</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.poi</groupId>
  136. <artifactId>poi-ooxml</artifactId>
  137. <version>3.16</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.commons</groupId>
  141. <artifactId>commons-collections4</artifactId>
  142. <version>4.1</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>net.sourceforge.jexcelapi</groupId>
  146. <artifactId>jxl</artifactId>
  147. <version>2.6.10</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>ws.schild</groupId>
  151. <artifactId>jave-core</artifactId>
  152. <version>2.4.4</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>ws.schild</groupId>
  156. <artifactId>jave-native-win64</artifactId>
  157. <version>2.4.4</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>commons-codec</groupId>
  161. <artifactId>commons-codec</artifactId>
  162. <version>1.12</version>
  163. </dependency>
  164. </dependencies>
  165. <dependencyManagement>
  166. <dependencies>
  167. <dependency>
  168. <groupId>org.springframework.cloud</groupId>
  169. <artifactId>spring-cloud-dependencies</artifactId>
  170. <version>Brixton.RELEASE</version>
  171. <type>pom</type>
  172. <scope>import</scope>
  173. </dependency>
  174. </dependencies>
  175. </dependencyManagement>
  176. <build>
  177. <plugins>
  178. <plugin>
  179. <groupId>org.springframework.boot</groupId>
  180. <artifactId>spring-boot-maven-plugin</artifactId>
  181. </plugin>
  182. </plugins>
  183. </build>
  184. <repositories>
  185. <repository>
  186. <id>nexus</id>
  187. <url>http://192.168.1.96:8081/nexus/content/groups/public/</url>
  188. <layout>default</layout>
  189. <releases>
  190. <enabled>true</enabled>
  191. </releases>
  192. <snapshots>
  193. <enabled>true</enabled>
  194. </snapshots>
  195. </repository>
  196. </repositories>
  197. <distributionManagement>
  198. <repository>
  199. <id>nexus-releases</id>
  200. <name>Releases</name>
  201. <url>http://192.168.1.96:8081/nexus/content/repositories/releases/</url>
  202. </repository>
  203. <snapshotRepository>
  204. <id>nexus-snapshots</id>
  205. <name>Snapshots</name>
  206. <url>http://192.168.1.96:8081/nexus/content/repositories/snapshots/</url>
  207. </snapshotRepository>
  208. </distributionManagement>
  209. </project>