pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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.2.0.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>cn.jihengcc</groupId>
  12. <artifactId>fuxin-yekuo</artifactId>
  13. <packaging>jar</packaging>
  14. <version>1.0.0</version>
  15. <name>fuxin-yekuo</name>
  16. <description>fuxin-yekuo</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <commons.lang3.version>3.8</commons.lang3.version>
  20. <commons.collections4.version>4.3</commons.collections4.version>
  21. <commons.beanutils.version>1.9.3</commons.beanutils.version>
  22. <mybatis.plus.version>3.3.1</mybatis.plus.version>
  23. <fastjson.version>1.2.68</fastjson.version>
  24. <jsonwebtoken.version>0.9.1</jsonwebtoken.version>
  25. <jbcrypt.version>0.4</jbcrypt.version>
  26. <easyexcel.version>2.1.6</easyexcel.version>
  27. <okhttp.version>3.10.0</okhttp.version>
  28. <pinyin4j.version>2.5.1</pinyin4j.version>
  29. <knife4j.version>3.0.1</knife4j.version>
  30. <easypoi.version>3.2.0</easypoi.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-amqp</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-jpa</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-freemarker</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-validation</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-boot-starter</artifactId>
  56. <version>${mybatis.plus.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-websocket</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>mysql</groupId>
  64. <artifactId>mysql-connector-java</artifactId>
  65. <scope>runtime</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-configuration-processor</artifactId>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.amqp</groupId>
  84. <artifactId>spring-rabbit-test</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>cn.afterturn</groupId>
  89. <artifactId>easypoi-base</artifactId>
  90. <version>${easypoi.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>cn.afterturn</groupId>
  94. <artifactId>easypoi-web</artifactId>
  95. <version>${easypoi.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>cn.afterturn</groupId>
  99. <artifactId>easypoi-annotation</artifactId>
  100. <version>${easypoi.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.github.xiaoymin</groupId>
  104. <artifactId>knife4j-spring-boot-starter</artifactId>
  105. <version>${knife4j.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.commons</groupId>
  109. <artifactId>commons-lang3</artifactId>
  110. <version>${commons.lang3.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.commons</groupId>
  114. <artifactId>commons-collections4</artifactId>
  115. <version>${commons.collections4.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-beanutils</groupId>
  119. <artifactId>commons-beanutils</artifactId>
  120. <version>${commons.beanutils.version}</version>
  121. </dependency>
  122. <!--fast-json-->
  123. <dependency>
  124. <groupId>com.alibaba</groupId>
  125. <artifactId>fastjson</artifactId>
  126. <version>${fastjson.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>io.jsonwebtoken</groupId>
  130. <artifactId>jjwt</artifactId>
  131. <version>${jsonwebtoken.version}</version>
  132. </dependency>
  133. <!-- 加密 -->
  134. <dependency>
  135. <groupId>org.mindrot</groupId>
  136. <artifactId>jbcrypt</artifactId>
  137. <version>${jbcrypt.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.alibaba</groupId>
  141. <artifactId>easyexcel</artifactId>
  142. <version>${easyexcel.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.squareup.okhttp3</groupId>
  146. <artifactId>okhttp</artifactId>
  147. <version>${okhttp.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.belerweb</groupId>
  151. <artifactId>pinyin4j</artifactId>
  152. <version>${pinyin4j.version}</version>
  153. </dependency>
  154. <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator -->
  155. <dependency>
  156. <groupId>net.coobird</groupId>
  157. <artifactId>thumbnailator</artifactId>
  158. <version>0.4.8</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>commons-io</groupId>
  162. <artifactId>commons-io</artifactId>
  163. <version>2.6</version>
  164. </dependency>
  165. </dependencies>
  166. <build>
  167. <plugins>
  168. <plugin>
  169. <groupId>org.springframework.boot</groupId>
  170. <artifactId>spring-boot-maven-plugin</artifactId>
  171. <configuration>
  172. <mainClass>cn.jiheng.fuxin.FuXinApplication</mainClass>
  173. <layout>ZIP</layout>
  174. <includes>
  175. <include>
  176. <!-- 排除所有Jar -->
  177. <groupId>nothing</groupId>
  178. <artifactId>nothing</artifactId>
  179. </include>
  180. </includes>
  181. </configuration>
  182. <executions>
  183. <execution>
  184. <goals>
  185. <goal>repackage</goal>
  186. </goals>
  187. </execution>
  188. </executions>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-compiler-plugin</artifactId>
  193. <configuration>
  194. <source>1.8</source>
  195. <target>1.8</target>
  196. </configuration>
  197. </plugin>
  198. </plugins>
  199. </build>
  200. </project>