pom.xml 5.8 KB

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