pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>fuint</artifactId>
  7. <groupId>com.fuint</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fuint-food</artifactId>
  12. <version>1.0.0</version>
  13. <packaging>jar</packaging>
  14. <properties>
  15. <kaptcha.version>0.0.9</kaptcha.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.fuint</groupId>
  20. <artifactId>fuint-framework</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.sentry</groupId>
  25. <artifactId>sentry-logback</artifactId>
  26. <version>1.2.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.ws</groupId>
  30. <artifactId>spring-ws-core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-security</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.aspectj</groupId>
  38. <artifactId>aspectjweaver</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-httpclient</groupId>
  42. <artifactId>commons-httpclient</artifactId>
  43. <version>3.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>nl.bitwalker</groupId>
  47. <artifactId>UserAgentUtils</artifactId>
  48. <version>1.2.4</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-lang</groupId>
  52. <artifactId>commons-lang</artifactId>
  53. <version>2.6</version>
  54. </dependency>
  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. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-boot-starter</artifactId>
  68. <version>${mybatis-plus.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus</artifactId>
  73. <version>${mybatis-plus.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.github.pagehelper</groupId>
  77. <artifactId>pagehelper-spring-boot-starter</artifactId>
  78. <version>1.2.5</version>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.mybatis</groupId>
  82. <artifactId>mybatis</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.mockito</groupId>
  88. <artifactId>mockito-core</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.github.axet</groupId>
  92. <artifactId>kaptcha</artifactId>
  93. <version>${kaptcha.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>junit</groupId>
  97. <artifactId>junit</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-test</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.javassist</groupId>
  107. <artifactId>javassist</artifactId>
  108. <version>3.24.0-GA</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.aliyun.oss</groupId>
  112. <artifactId>aliyun-sdk-oss</artifactId>
  113. <version>3.10.2</version>
  114. </dependency>
  115. <!-- aliyun短信API -->
  116. <dependency>
  117. <groupId>com.aliyun</groupId>
  118. <artifactId>aliyun-java-sdk-core</artifactId>
  119. <version>4.4.6</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.alibaba</groupId>
  123. <artifactId>transmittable-thread-local</artifactId>
  124. <version>2.2.0</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.github.javen205</groupId>
  128. <artifactId>IJPay-WxPay</artifactId>
  129. <version>2.9.6</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.github.javen205</groupId>
  133. <artifactId>IJPay-AliPay</artifactId>
  134. <version>2.9.6</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.velocity</groupId>
  138. <artifactId>velocity-engine-core</artifactId>
  139. <version>2.3</version>
  140. </dependency>
  141. <!-- io常用工具类 -->
  142. <dependency>
  143. <groupId>commons-io</groupId>
  144. <artifactId>commons-io</artifactId>
  145. <version>2.13.0</version>
  146. </dependency>
  147. <!--常用工具类 -->
  148. <dependency>
  149. <groupId>org.apache.commons</groupId>
  150. <artifactId>commons-lang3</artifactId>
  151. <version>3.12.0</version>
  152. </dependency>
  153. </dependencies>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. <version>2.5.12</version>
  160. <executions>
  161. <execution>
  162. <goals>
  163. <goal>repackage</goal>
  164. </goals>
  165. </execution>
  166. </executions>
  167. </plugin>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-compiler-plugin</artifactId>
  171. <version>3.1</version>
  172. <configuration>
  173. <source>1.8</source>
  174. <target>1.8</target>
  175. </configuration>
  176. </plugin>
  177. </plugins>
  178. </build>
  179. </project>