pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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.ygj</groupId>
  6. <artifactId>yuemum</artifactId>
  7. <version>1</version>
  8. <packaging>war</packaging>
  9. <name>yuemum</name>
  10. <description>Demo project for Spring Boot</description>
  11. <!--<profiles>-->
  12. <!--<profile>-->
  13. <!--<id>dev</id>-->
  14. <!--<properties>-->
  15. <!--<spring.profiles.active>dev</spring.profiles.active>-->
  16. <!--</properties>-->
  17. <!--<activation>-->
  18. <!--<activeByDefault>true</activeByDefault>-->
  19. <!--</activation>-->
  20. <!--</profile>-->
  21. <!--<profile>-->
  22. <!--<id>pro</id>-->
  23. <!--<properties>-->
  24. <!--<spring.profiles.active>pro</spring.profiles.active>-->
  25. <!--</properties>-->
  26. <!--</profile>-->
  27. <!--</profiles>-->
  28. <parent>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-parent</artifactId>
  31. <version>1.5.10.RELEASE</version>
  32. <relativePath/> <!-- lookup parent from repository -->
  33. </parent>
  34. <properties>
  35. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  36. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  37. <java.version>1.8</java.version>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mybatis.spring.boot</groupId>
  46. <artifactId>mybatis-spring-boot-starter</artifactId>
  47. <version>1.2.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.31</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.json</groupId>
  61. <artifactId>json</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.google.code.gson</groupId>
  65. <artifactId>gson</artifactId>
  66. <version>2.8.2</version>
  67. </dependency>
  68. <!--启动-->
  69. <!--<dependency>-->
  70. <!--<groupId>org.springframework.boot</groupId>-->
  71. <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
  72. <!--<scope>provided</scope>-->
  73. <!--</dependency>-->
  74. <dependency>
  75. <groupId>com.fasterxml.jackson.core</groupId>
  76. <artifactId>jackson-annotations</artifactId>
  77. <version>2.8.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.fasterxml.jackson.core</groupId>
  81. <artifactId>jackson-core</artifactId>
  82. <version>2.8.7</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.fasterxml.jackson.core</groupId>
  86. <artifactId>jackson-databind</artifactId>
  87. <version>2.8.7</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>druid</artifactId>
  92. <version>1.1.3</version>
  93. </dependency>
  94. <!--分页-->
  95. <dependency>
  96. <groupId>com.github.pagehelper</groupId>
  97. <artifactId>pagehelper</artifactId>
  98. <version>4.1.6</version>
  99. </dependency>
  100. <!--emoji-->
  101. <dependency>
  102. <groupId>com.vdurmont</groupId>
  103. <artifactId>emoji-java</artifactId>
  104. <version>3.2.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.httpcomponents</groupId>
  108. <artifactId>httpclient</artifactId>
  109. <version>4.5.4</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-test</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.thetransactioncompany</groupId>
  118. <artifactId>cors-filter</artifactId>
  119. <version>1.7.1</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>commons-fileupload</groupId>
  127. <artifactId>commons-fileupload</artifactId>
  128. <version>1.3.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>commons-io</groupId>
  132. <artifactId>commons-io</artifactId>
  133. <version>2.5</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>commons-lang</groupId>
  137. <artifactId>commons-lang</artifactId>
  138. <version>2.6</version>
  139. </dependency>
  140. <!-- Spring 文件上传的依赖包 -->
  141. <dependency>
  142. <groupId>org.apache.commons</groupId>
  143. <artifactId>commons-io</artifactId>
  144. <version>1.3.2</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>net.sourceforge.nekohtml</groupId>
  148. <artifactId>nekohtml</artifactId>
  149. <version>1.9.22</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.bouncycastle</groupId>
  153. <artifactId>bcprov-jdk15on</artifactId>
  154. <version>1.54</version>
  155. </dependency>
  156. <!--Spring Security-->
  157. <!--dependency>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-starter-security</artifactId>
  160. </dependency-->
  161. <!--Shiro-->
  162. <dependency>
  163. <groupId>org.apache.shiro</groupId>
  164. <artifactId>shiro-spring</artifactId>
  165. <version>1.3.2</version>
  166. </dependency>
  167. <!--热部署-->
  168. <dependency>
  169. <groupId>org.springframework.boot</groupId>
  170. <artifactId>spring-boot-devtools</artifactId>
  171. <optional>true</optional>
  172. </dependency>
  173. </dependencies>
  174. <build>
  175. <plugins>
  176. <plugin>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-maven-plugin</artifactId>
  179. <configuration>
  180. <fork>true</fork>
  181. </configuration>
  182. </plugin>
  183. </plugins>
  184. </build>
  185. </project>