pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  77. <dependency>
  78. <groupId>com.github.theborakompanioni</groupId>
  79. <artifactId>thymeleaf-extras-shiro</artifactId>
  80. <version>${thymeleaf.extras.shiro.version}</version>
  81. </dependency>
  82. <!-- 解析客户端操作系统、浏览器等 -->
  83. <dependency>
  84. <groupId>eu.bitwalker</groupId>
  85. <artifactId>UserAgentUtils</artifactId>
  86. <version>${bitwalker.version}</version>
  87. </dependency>
  88. <!-- pagehelper 分页插件 -->
  89. <dependency>
  90. <groupId>com.github.pagehelper</groupId>
  91. <artifactId>pagehelper-spring-boot-starter</artifactId>
  92. <version>${pagehelper.boot.version}</version>
  93. </dependency>
  94. <!-- 获取系统信息 -->
  95. <dependency>
  96. <groupId>com.github.oshi</groupId>
  97. <artifactId>oshi-core</artifactId>
  98. <version>${oshi.version}</version>
  99. </dependency>
  100. <!-- swagger2-->
  101. <dependency>
  102. <groupId>io.springfox</groupId>
  103. <artifactId>springfox-swagger2</artifactId>
  104. <version>${swagger.version}</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>io.swagger</groupId>
  108. <artifactId>swagger-annotations</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>io.swagger</groupId>
  112. <artifactId>swagger-models</artifactId>
  113. </exclusion>
  114. </exclusions>
  115. </dependency>
  116. <!-- swagger2-UI-->
  117. <dependency>
  118. <groupId>io.springfox</groupId>
  119. <artifactId>springfox-swagger-ui</artifactId>
  120. <version>${swagger.version}</version>
  121. </dependency>
  122. <!--io常用工具类 -->
  123. <dependency>
  124. <groupId>commons-io</groupId>
  125. <artifactId>commons-io</artifactId>
  126. <version>${commons.io.version}</version>
  127. </dependency>
  128. <!--文件上传工具类 -->
  129. <dependency>
  130. <groupId>commons-fileupload</groupId>
  131. <artifactId>commons-fileupload</artifactId>
  132. <version>${commons.fileupload.version}</version>
  133. </dependency>
  134. <!-- excel工具 -->
  135. <dependency>
  136. <groupId>org.apache.poi</groupId>
  137. <artifactId>poi-ooxml</artifactId>
  138. <version>${poi.version}</version>
  139. </dependency>
  140. <!--velocity代码生成使用模板 -->
  141. <dependency>
  142. <groupId>org.apache.velocity</groupId>
  143. <artifactId>velocity</artifactId>
  144. <version>${velocity.version}</version>
  145. </dependency>
  146. <!-- 阿里JSON解析器 -->
  147. <dependency>
  148. <groupId>com.alibaba</groupId>
  149. <artifactId>fastjson</artifactId>
  150. <version>${fastjson.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.httpcomponents</groupId>
  154. <artifactId>httpclient</artifactId>
  155. <version>${httpclient.version}</version>
  156. </dependency>
  157. <!--lombok 注解-->
  158. <dependency>
  159. <groupId>org.projectlombok</groupId>
  160. <artifactId>lombok</artifactId>
  161. <version>${lombok.version}</version>
  162. </dependency>
  163. <!-- 定时任务-->
  164. <dependency>
  165. <groupId>com.dgtly</groupId>
  166. <artifactId>suishenbang-quartz</artifactId>
  167. <version>${dgtly.version}</version>
  168. </dependency>
  169. <!-- 代码生成-->
  170. <dependency>
  171. <groupId>com.dgtly</groupId>
  172. <artifactId>suishenbang-generator</artifactId>
  173. <version>${dgtly.version}</version>
  174. </dependency>
  175. <!-- 核心模块-->
  176. <dependency>
  177. <groupId>com.dgtly</groupId>
  178. <artifactId>suishenbang-framework</artifactId>
  179. <version>${dgtly.version}</version>
  180. </dependency>
  181. <!-- 系统模块-->
  182. <dependency>
  183. <groupId>com.dgtly</groupId>
  184. <artifactId>suishenbang-system</artifactId>
  185. <version>${dgtly.version}</version>
  186. </dependency>
  187. <!-- 通用工具-->
  188. <dependency>
  189. <groupId>com.dgtly</groupId>
  190. <artifactId>suishenbang-common</artifactId>
  191. <version>${dgtly.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.dgtly</groupId>
  195. <artifactId>suishenbang-wxportal</artifactId>
  196. <version>${dgtly.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.dgtly</groupId>
  200. <artifactId>suishenbang-apiframework</artifactId>
  201. <version>${dgtly.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.dgtly</groupId>
  205. <artifactId>suishenbang-order</artifactId>
  206. <version>${dgtly.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.dgtly</groupId>
  210. <artifactId>suishenbang-sync</artifactId>
  211. <version>${dgtly.version}</version>
  212. </dependency>
  213. </dependencies>
  214. </dependencyManagement>
  215. <modules>
  216. <module>suishenbang-admin</module>
  217. <module>suishenbang-system</module>
  218. <module>suishenbang-framework</module>
  219. <module>suishenbang-apiframework</module>
  220. <module>suishenbang-quartz</module>
  221. <module>suishenbang-generator</module>
  222. <module>suishenbang-common</module>
  223. <module>suishenbang-api</module>
  224. <module>suishenbang-wxportal</module>
  225. <module>suishenbang-order</module>
  226. <module>suishenbang-sync</module>
  227. </modules>
  228. <packaging>pom</packaging>
  229. <dependencies>
  230. </dependencies>
  231. <build>
  232. <plugins>
  233. <plugin>
  234. <groupId>org.apache.maven.plugins</groupId>
  235. <artifactId>maven-compiler-plugin</artifactId>
  236. <configuration>
  237. <source>${java.version}</source>
  238. <target>${java.version}</target>
  239. <encoding>${project.build.sourceEncoding}</encoding>
  240. </configuration>
  241. </plugin>
  242. </plugins>
  243. </build>
  244. <repositories>
  245. <repository>
  246. <id>public</id>
  247. <name>aliyun nexus</name>
  248. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  249. <releases>
  250. <enabled>true</enabled>
  251. </releases>
  252. </repository>
  253. </repositories>
  254. <pluginRepositories>
  255. <pluginRepository>
  256. <id>public</id>
  257. <name>aliyun nexus</name>
  258. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  259. <releases>
  260. <enabled>true</enabled>
  261. </releases>
  262. <snapshots>
  263. <enabled>false</enabled>
  264. </snapshots>
  265. </pluginRepository>
  266. </pluginRepositories>
  267. </project>