pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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>com.hcloud.microserver</groupId>
  6. <artifactId>common-core</artifactId>
  7. <version>${common.core.version}</version>
  8. <packaging>jar</packaging>
  9. <name>common-core</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>com.hcloud.microserver</groupId>
  13. <artifactId>common-parent</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-hystrix</artifactId>
  20. <version>LATEST</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter-feign</artifactId>
  33. <version>LATEST</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>fastjson</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>net.sf.dozer</groupId>
  41. <artifactId>dozer</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.jsonwebtoken</groupId>
  45. <artifactId>jjwt</artifactId>
  46. <version>0.9.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.sourceforge.jexcelapi</groupId>
  50. <artifactId>jxl</artifactId>
  51. <version>2.6.12</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-net</groupId>
  55. <artifactId>commons-net</artifactId>
  56. <version>3.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-data-redis</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. <version>1.5.18.RELEASE</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.binarywang</groupId>
  69. <artifactId>weixin-java-mp</artifactId>
  70. <version>3.1.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.github.binarywang</groupId>
  74. <artifactId>weixin-java-pay</artifactId>
  75. <version>3.1.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-configuration-processor</artifactId>
  80. <optional>true</optional>
  81. </dependency>
  82. <!--二维码 zxing-->
  83. <dependency>
  84. <groupId>com.google.zxing</groupId>
  85. <artifactId>core</artifactId>
  86. <version>3.3.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.google.zxing</groupId>
  90. <artifactId>javase</artifactId>
  91. <version>3.3.3</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.belerweb</groupId>
  95. <artifactId>pinyin4j</artifactId>
  96. <version>2.5.0</version>
  97. </dependency>
  98. <!--短信服务-->
  99. <dependency>
  100. <groupId>com.aliyun</groupId>
  101. <artifactId>aliyun-java-sdk-core</artifactId>
  102. <version>4.0.3</version>
  103. </dependency>
  104. <!--java Element 解析 -->
  105. <dependency>
  106. <groupId>org.jsoup</groupId>
  107. <artifactId>jsoup</artifactId>
  108. <version>1.7.3</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.squareup.okhttp</groupId>
  112. <artifactId>okhttp</artifactId>
  113. <version>2.7.5</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>cn.hutool</groupId>
  117. <artifactId>hutool-captcha</artifactId>
  118. <version>LATEST</version>
  119. </dependency>
  120. </dependencies>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.apache.maven.plugins</groupId>
  125. <artifactId>maven-surefire-plugin</artifactId>
  126. <version>2.18.1</version>
  127. <configuration>
  128. <skipTests>true</skipTests>
  129. </configuration>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-maven-plugin</artifactId>
  134. <executions>
  135. <execution>
  136. <goals>
  137. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中 -->
  138. </goals>
  139. <!--可以生成不含依赖包的不可执行Jar包 -->
  140. <configuration>
  141. <classifier>exec</classifier>
  142. </configuration>
  143. </execution>
  144. </executions>
  145. </plugin>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-surefire-plugin</artifactId>
  149. <version>2.18.1</version>
  150. <configuration>
  151. <skipTests>true</skipTests>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </project>