pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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>flash-waimai</artifactId>
  7. <groupId>cn.enilu</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>flash-waimai-core</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.enilu</groupId>
  15. <artifactId>flash-waimai-generate</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-tomcat</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-mail</artifactId>
  31. </dependency>
  32. <!-- entiy start-->
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-jpa</artifactId>
  41. </dependency>
  42. <!-- dao start-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-context-support</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-jdbc</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>druid-spring-boot-starter</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-cache</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.ehcache</groupId>
  69. <artifactId>ehcache</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>net.sf.ehcache</groupId>
  73. <artifactId>ehcache-core</artifactId>
  74. </dependency>
  75. <!-- utils start-->
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>fastjson</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.google.guava</groupId>
  82. <artifactId>guava</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-logging</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-io</groupId>
  94. <artifactId>commons-io</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>commons-codec</groupId>
  98. <artifactId>commons-codec</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.belerweb</groupId>
  102. <artifactId>pinyin4j</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.quartz-scheduler</groupId>
  106. <artifactId>quartz</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.quartz-scheduler</groupId>
  110. <artifactId>quartz-jobs</artifactId>
  111. </dependency>
  112. <!-- export excel-->
  113. <dependency>
  114. <groupId>org.jxls</groupId>
  115. <artifactId>jxls</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.jxls</groupId>
  119. <artifactId>jxls-poi</artifactId>
  120. </dependency>
  121. <!-- message start-->
  122. <dependency>
  123. <groupId>com.github.qcloudsms</groupId>
  124. <artifactId>qcloudsms</artifactId>
  125. <version>1.0.6</version>
  126. </dependency>
  127. <!-- message end-->
  128. <dependency>
  129. <groupId>org.apache.shiro</groupId>
  130. <artifactId>shiro-spring</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.auth0</groupId>
  134. <artifactId>java-jwt</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-starter-tomcat</artifactId>
  139. <scope>compile</scope>
  140. </dependency>
  141. <!--test-->
  142. <dependency>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-starter-test</artifactId>
  145. <scope>test</scope>
  146. </dependency>
  147. <!--test-->
  148. <dependency>
  149. <groupId>junit</groupId>
  150. <artifactId>junit</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter-test</artifactId>
  156. <scope>test</scope>
  157. </dependency>
  158. </dependencies>
  159. </project>