pom.xml 8.0 KB

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