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