pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cc.iteachyou</groupId>
  7. <artifactId>cms</artifactId>
  8. <version>4.1.3-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>dreamer-cms</name>
  11. <description>Dreamer CMS</description>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.7.2</version>
  16. <relativePath /> <!-- lookup parent from repository -->
  17. </parent>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <java.version>1.8</java.version>
  22. <scheduler.version>4.2.0</scheduler.version>
  23. <fastjson.version>1.2.83</fastjson.version>
  24. <shiro.version>1.9.1</shiro.version>
  25. <hutool.version>5.8.5</hutool.version>
  26. <pagehelper.version>1.4.3</pagehelper.version>
  27. <mybatis.version>2.2.2</mybatis.version>
  28. <tkmapper.version>2.0.3-beta1</tkmapper.version>
  29. <commonsio.version>2.11.0</commonsio.version>
  30. <commonscodec.version>1.15</commonscodec.version>
  31. <commonsfileupload.version>1.4</commonsfileupload.version>
  32. <orgjson.version>20180130</orgjson.version>
  33. <easycaptcha.version>1.6.2</easycaptcha.version>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <!-- redis相关jar包 -->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-redis</artifactId>
  44. </dependency>
  45. <!-- thymeleaf 模版引擎 -->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  49. </dependency>
  50. <!--引入websocket依赖 -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-websocket</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.karaf.scheduler</groupId>
  57. <artifactId>org.apache.karaf.scheduler.core</artifactId>
  58. <version>${scheduler.version}</version>
  59. </dependency>
  60. <!-- configuration 配置解析相关jar包 -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-configuration-processor</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <!--AOP依赖 -->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-aop</artifactId>
  70. </dependency>
  71. <!-- 解析yml文件相关jar包 -->
  72. <dependency>
  73. <groupId>com.fasterxml.jackson.dataformat</groupId>
  74. <artifactId>jackson-dataformat-yaml</artifactId>
  75. </dependency>
  76. <!-- mybatis相关jar包 -->
  77. <dependency>
  78. <groupId>org.mybatis.spring.boot</groupId>
  79. <artifactId>mybatis-spring-boot-starter</artifactId>
  80. <version>${mybatis.version}</version>
  81. </dependency>
  82. <!-- mysql -->
  83. <dependency>
  84. <groupId>mysql</groupId>
  85. <artifactId>mysql-connector-java</artifactId>
  86. <scope>runtime</scope>
  87. </dependency>
  88. <!-- shiro相关jar包 -->
  89. <dependency>
  90. <groupId>org.apache.shiro</groupId>
  91. <artifactId>shiro-spring</artifactId>
  92. <version>${shiro.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.github.theborakompanioni</groupId>
  96. <artifactId>thymeleaf-extras-shiro</artifactId>
  97. <version>2.0.0</version>
  98. </dependency>
  99. <!-- fastjson -->
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <version>${fastjson.version}</version>
  104. </dependency>
  105. <!-- 工具类 -->
  106. <dependency>
  107. <groupId>cn.hutool</groupId>
  108. <artifactId>hutool-all</artifactId>
  109. <version>${hutool.version}</version>
  110. </dependency>
  111. <!-- 分页插件 -->
  112. <dependency>
  113. <groupId>com.github.pagehelper</groupId>
  114. <artifactId>pagehelper-spring-boot-starter</artifactId>
  115. <version>${pagehelper.version}</version>
  116. <exclusions>
  117. <exclusion>
  118. <groupId>org.mybatis.spring.boot</groupId>
  119. <artifactId>mybatis-spring-boot-starter</artifactId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. <dependency>
  124. <groupId>tk.mybatis</groupId>
  125. <artifactId>mapper-spring-boot-starter</artifactId>
  126. <version>${tkmapper.version}</version>
  127. </dependency>
  128. <!-- 以下为 ueditor 依赖的jar包 -->
  129. <dependency>
  130. <groupId>commons-io</groupId>
  131. <artifactId>commons-io</artifactId>
  132. <version>${commonsio.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>commons-codec</groupId>
  136. <artifactId>commons-codec</artifactId>
  137. <version>${commonscodec.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>commons-fileupload</groupId>
  141. <artifactId>commons-fileupload</artifactId>
  142. <version>${commonsfileupload.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.json</groupId>
  146. <artifactId>json</artifactId>
  147. <version>${orgjson.version}</version>
  148. </dependency>
  149. <!-- Lombok支持 -->
  150. <dependency>
  151. <groupId>org.projectlombok</groupId>
  152. <artifactId>lombok</artifactId>
  153. <scope>provided</scope>
  154. </dependency>
  155. <!-- 汉字转拼音 -->
  156. <dependency>
  157. <groupId>com.belerweb</groupId>
  158. <artifactId>pinyin4j</artifactId>
  159. <version>2.5.0</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.github.whvcse</groupId>
  163. <artifactId>easy-captcha</artifactId>
  164. <version>${easycaptcha.version}</version>
  165. </dependency>
  166. <!-- Junit -->
  167. <dependency>
  168. <groupId>junit</groupId>
  169. <artifactId>junit</artifactId>
  170. <version>4.12</version>
  171. <scope>test</scope>
  172. </dependency>
  173. </dependencies>
  174. <build>
  175. <finalName>dreamer-cms</finalName>
  176. <plugins>
  177. <plugin>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-maven-plugin</artifactId>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.springframework.boot</groupId>
  183. <artifactId>spring-boot-maven-plugin</artifactId>
  184. <configuration>
  185. <fork>true</fork>
  186. </configuration>
  187. </plugin>
  188. <!-- mybatis generator 自动生成代码插件 -->
  189. <plugin>
  190. <groupId>org.mybatis.generator</groupId>
  191. <artifactId>mybatis-generator-maven-plugin</artifactId>
  192. <version>1.3.2</version>
  193. <configuration>
  194. <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
  195. <overwrite>true</overwrite>
  196. <verbose>true</verbose>
  197. </configuration>
  198. </plugin>
  199. </plugins>
  200. </build>
  201. </project>