pom.xml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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>com.dgtly</groupId>
  7. <artifactId>suishenbang-oneportal</artifactId>
  8. <version>4.0.0</version>
  9. <name>suishenbang-oneportal</name>
  10. <url>www.dgtis.com</url>
  11. <description>随身帮oneportal管理平台</description>
  12. <properties>
  13. <dgtly.version>4.0.0</dgtly.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <shiro.version>1.6.0</shiro.version>
  18. <thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
  19. <mybatis.boot.version>1.3.2</mybatis.boot.version>
  20. <druid.version>1.1.14</druid.version>
  21. <bitwalker.version>1.19</bitwalker.version>
  22. <kaptcha.version>2.3.2</kaptcha.version>
  23. <swagger.version>2.9.2</swagger.version>
  24. <pagehelper.boot.version>1.2.5</pagehelper.boot.version>
  25. <fastjson.version>2.0.16</fastjson.version>
  26. <oshi.version>3.9.1</oshi.version>
  27. <commons.io.version>2.5</commons.io.version>
  28. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  29. <httpclient.version>4.5.5</httpclient.version>
  30. <poi.version>3.17</poi.version>
  31. <velocity.version>1.7</velocity.version>
  32. <lombok.version>1.16.10</lombok.version>
  33. <mail.version>1.4.7</mail.version>
  34. </properties>
  35. <!-- 依赖声明 -->
  36. <dependencyManagement>
  37. <dependencies>
  38. <!-- SpringBoot的依赖配置-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-dependencies</artifactId>
  42. <version>2.1.1.RELEASE</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. <!--阿里数据库连接池 -->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid-spring-boot-starter</artifactId>
  50. <version>${druid.version}</version>
  51. </dependency>
  52. <!--验证码 -->
  53. <dependency>
  54. <groupId>com.github.penggle</groupId>
  55. <artifactId>kaptcha</artifactId>
  56. <version>${kaptcha.version}</version>
  57. </dependency>
  58. <!--Shiro核心框架 -->
  59. <dependency>
  60. <groupId>org.apache.shiro</groupId>
  61. <artifactId>shiro-core</artifactId>
  62. <version>${shiro.version}</version>
  63. </dependency>
  64. <!-- Shiro使用Srping框架 -->
  65. <dependency>
  66. <groupId>org.apache.shiro</groupId>
  67. <artifactId>shiro-spring</artifactId>
  68. <version>${shiro.version}</version>
  69. </dependency>
  70. <!-- Shiro使用EhCache缓存框架 -->
  71. <dependency>
  72. <groupId>org.apache.shiro</groupId>
  73. <artifactId>shiro-ehcache</artifactId>
  74. <version>${shiro.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.hutool</groupId>
  78. <artifactId>hutool-all</artifactId>
  79. <version>5.3.5</version>
  80. </dependency>
  81. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  82. <dependency>
  83. <groupId>com.github.theborakompanioni</groupId>
  84. <artifactId>thymeleaf-extras-shiro</artifactId>
  85. <version>${thymeleaf.extras.shiro.version}</version>
  86. </dependency>
  87. <!-- 解析客户端操作系统、浏览器等 -->
  88. <dependency>
  89. <groupId>eu.bitwalker</groupId>
  90. <artifactId>UserAgentUtils</artifactId>
  91. <version>${bitwalker.version}</version>
  92. </dependency>
  93. <!-- pagehelper 分页插件 -->
  94. <dependency>
  95. <groupId>com.github.pagehelper</groupId>
  96. <artifactId>pagehelper-spring-boot-starter</artifactId>
  97. <version>${pagehelper.boot.version}</version>
  98. </dependency>
  99. <!-- 获取系统信息 -->
  100. <dependency>
  101. <groupId>com.github.oshi</groupId>
  102. <artifactId>oshi-core</artifactId>
  103. <version>${oshi.version}</version>
  104. </dependency>
  105. <!-- swagger2-->
  106. <dependency>
  107. <groupId>io.springfox</groupId>
  108. <artifactId>springfox-swagger2</artifactId>
  109. <version>${swagger.version}</version>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>io.swagger</groupId>
  113. <artifactId>swagger-annotations</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <groupId>io.swagger</groupId>
  117. <artifactId>swagger-models</artifactId>
  118. </exclusion>
  119. </exclusions>
  120. </dependency>
  121. <!-- swagger2-UI-->
  122. <dependency>
  123. <groupId>io.springfox</groupId>
  124. <artifactId>springfox-swagger-ui</artifactId>
  125. <version>${swagger.version}</version>
  126. </dependency>
  127. <!--io常用工具类 -->
  128. <dependency>
  129. <groupId>commons-io</groupId>
  130. <artifactId>commons-io</artifactId>
  131. <version>${commons.io.version}</version>
  132. </dependency>
  133. <!--文件上传工具类 -->
  134. <dependency>
  135. <groupId>commons-fileupload</groupId>
  136. <artifactId>commons-fileupload</artifactId>
  137. <version>${commons.fileupload.version}</version>
  138. </dependency>
  139. <!-- excel工具 -->
  140. <dependency>
  141. <groupId>org.apache.poi</groupId>
  142. <artifactId>poi-ooxml</artifactId>
  143. <version>${poi.version}</version>
  144. </dependency>
  145. <!--velocity代码生成使用模板 -->
  146. <dependency>
  147. <groupId>org.apache.velocity</groupId>
  148. <artifactId>velocity</artifactId>
  149. <version>${velocity.version}</version>
  150. </dependency>
  151. <!-- 阿里JSON解析器 -->
  152. <dependency>
  153. <groupId>com.alibaba</groupId>
  154. <artifactId>fastjson</artifactId>
  155. <version>${fastjson.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.httpcomponents</groupId>
  159. <artifactId>httpclient</artifactId>
  160. <version>${httpclient.version}</version>
  161. </dependency>
  162. <!--lombok 注解-->
  163. <dependency>
  164. <groupId>org.projectlombok</groupId>
  165. <artifactId>lombok</artifactId>
  166. <version>${lombok.version}</version>
  167. </dependency>
  168. <!-- 定时任务-->
  169. <dependency>
  170. <groupId>com.dgtly</groupId>
  171. <artifactId>suishenbang-quartz</artifactId>
  172. <version>${dgtly.version}</version>
  173. </dependency>
  174. <!-- 代码生成-->
  175. <dependency>
  176. <groupId>com.dgtly</groupId>
  177. <artifactId>suishenbang-generator</artifactId>
  178. <version>${dgtly.version}</version>
  179. </dependency>
  180. <!-- 核心模块-->
  181. <dependency>
  182. <groupId>com.dgtly</groupId>
  183. <artifactId>suishenbang-framework</artifactId>
  184. <version>${dgtly.version}</version>
  185. </dependency>
  186. <!-- 系统模块-->
  187. <dependency>
  188. <groupId>com.dgtly</groupId>
  189. <artifactId>suishenbang-system</artifactId>
  190. <version>${dgtly.version}</version>
  191. </dependency>
  192. <!-- 通用工具-->
  193. <dependency>
  194. <groupId>com.dgtly</groupId>
  195. <artifactId>suishenbang-common</artifactId>
  196. <version>${dgtly.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.dgtly</groupId>
  200. <artifactId>suishenbang-wxportal</artifactId>
  201. <version>${dgtly.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.dgtly</groupId>
  205. <artifactId>suishenbang-apiframework</artifactId>
  206. <version>${dgtly.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.dgtly</groupId>
  210. <artifactId>suishenbang-order</artifactId>
  211. <version>${dgtly.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>com.dgtly</groupId>
  215. <artifactId>suishenbang-sync</artifactId>
  216. <version>${dgtly.version}</version>
  217. </dependency>
  218. </dependencies>
  219. </dependencyManagement>
  220. <modules>
  221. <module>suishenbang-admin</module>
  222. <module>suishenbang-system</module>
  223. <module>suishenbang-framework</module>
  224. <module>suishenbang-apiframework</module>
  225. <module>suishenbang-quartz</module>
  226. <module>suishenbang-generator</module>
  227. <module>suishenbang-common</module>
  228. <module>suishenbang-api</module>
  229. <module>suishenbang-wxportal</module>
  230. <module>suishenbang-order</module>
  231. <module>suishenbang-sync</module>
  232. </modules>
  233. <packaging>pom</packaging>
  234. <dependencies>
  235. </dependencies>
  236. <build>
  237. <plugins>
  238. <plugin>
  239. <groupId>org.apache.maven.plugins</groupId>
  240. <artifactId>maven-compiler-plugin</artifactId>
  241. <configuration>
  242. <source>${java.version}</source>
  243. <target>${java.version}</target>
  244. <encoding>${project.build.sourceEncoding}</encoding>
  245. </configuration>
  246. </plugin>
  247. </plugins>
  248. </build>
  249. <repositories>
  250. <repository>
  251. <id>public</id>
  252. <name>aliyun nexus</name>
  253. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  254. <releases>
  255. <enabled>true</enabled>
  256. </releases>
  257. </repository>
  258. </repositories>
  259. <pluginRepositories>
  260. <pluginRepository>
  261. <id>public</id>
  262. <name>aliyun nexus</name>
  263. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  264. <releases>
  265. <enabled>true</enabled>
  266. </releases>
  267. <snapshots>
  268. <enabled>false</enabled>
  269. </snapshots>
  270. </pluginRepository>
  271. </pluginRepositories>
  272. </project>