pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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>me.zhengjie</groupId>
  7. <artifactId>eladmin</artifactId>
  8. <packaging>pom</packaging>
  9. <version>2.6</version>
  10. <modules>
  11. <module>eladmin-common</module>
  12. <module>eladmin-logging</module>
  13. <module>eladmin-system</module>
  14. <module>eladmin-tools</module>
  15. <module>eladmin-generator</module>
  16. <module>eladmin-activity</module>
  17. </modules>
  18. <name>EL-ADMIN 后台管理</name>
  19. <url>http://auauz.net</url>
  20. <parent>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-parent</artifactId>
  23. <version>2.1.0.RELEASE</version>
  24. </parent>
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <java.version>1.8</java.version>
  29. <log4jdbc.version>1.16</log4jdbc.version>
  30. <swagger.version>2.9.2</swagger.version>
  31. <fastjson.version>1.2.70</fastjson.version>
  32. <druid.version>1.1.24</druid.version>
  33. <commons-pool2.version>2.5.0</commons-pool2.version>
  34. <mapstruct.version>1.3.1.Final</mapstruct.version>
  35. </properties>
  36. <dependencies>
  37. <!--Spring boot 核心-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-jpa</artifactId>
  41. </dependency>
  42. <!--Spring boot Web容器-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-web</artifactId>
  46. </dependency>
  47. <!--Spring boot 测试-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <!--Spring boot 安全框架-->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-security</artifactId>
  57. </dependency>
  58. <!-- spring boot 缓存 -->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-cache</artifactId>
  62. </dependency>
  63. <!--Spring boot Redis-->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-data-redis</artifactId>
  67. </dependency>
  68. <!--spring boot 集成redis所需common-pool2-->
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-pool2</artifactId>
  72. <version>${commons-pool2.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. </dependency>
  78. <!--监控sql日志-->
  79. <dependency>
  80. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  81. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  82. <version>${log4jdbc.version}</version>
  83. </dependency>
  84. <!-- Swagger UI 相关 -->
  85. <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-swagger2</artifactId>
  88. <version>${swagger.version}</version>
  89. <exclusions>
  90. <exclusion>
  91. <groupId>io.swagger</groupId>
  92. <artifactId>swagger-annotations</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>io.swagger</groupId>
  96. <artifactId>swagger-models</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger-ui</artifactId>
  103. <version>${swagger.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>io.swagger</groupId>
  107. <artifactId>swagger-annotations</artifactId>
  108. <version>1.5.21</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>io.swagger</groupId>
  112. <artifactId>swagger-models</artifactId>
  113. <version>1.5.21</version>
  114. </dependency>
  115. <!--Mysql依赖包-->
  116. <dependency>
  117. <groupId>mysql</groupId>
  118. <artifactId>mysql-connector-java</artifactId>
  119. <scope>runtime</scope>
  120. </dependency>
  121. <!-- druid数据源驱动 -->
  122. <dependency>
  123. <groupId>com.alibaba</groupId>
  124. <artifactId>druid-spring-boot-starter</artifactId>
  125. <version>${druid.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.lionsoul</groupId>
  129. <artifactId>ip2region</artifactId>
  130. <version>1.7.2</version>
  131. </dependency>
  132. <!--lombok插件-->
  133. <dependency>
  134. <groupId>org.projectlombok</groupId>
  135. <artifactId>lombok</artifactId>
  136. <optional>true</optional>
  137. </dependency>
  138. <!-- excel工具 -->
  139. <dependency>
  140. <groupId>org.apache.poi</groupId>
  141. <artifactId>poi</artifactId>
  142. <version>3.17</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.poi</groupId>
  146. <artifactId>poi-ooxml</artifactId>
  147. <version>3.17</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>xerces</groupId>
  151. <artifactId>xercesImpl</artifactId>
  152. <version>2.12.0</version>
  153. </dependency>
  154. <!-- fastjson -->
  155. <dependency>
  156. <groupId>com.alibaba</groupId>
  157. <artifactId>fastjson</artifactId>
  158. <version>${fastjson.version}</version>
  159. </dependency>
  160. <!--mapStruct依赖-->
  161. <dependency>
  162. <groupId>org.mapstruct</groupId>
  163. <artifactId>mapstruct</artifactId>
  164. <version>${mapstruct.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.mapstruct</groupId>
  168. <artifactId>mapstruct-processor</artifactId>
  169. <version>${mapstruct.version}</version>
  170. <scope>provided</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>javax.inject</groupId>
  174. <artifactId>javax.inject</artifactId>
  175. <version>1</version>
  176. </dependency>
  177. <!-- Java图形验证码 -->
  178. <dependency>
  179. <groupId>com.github.whvcse</groupId>
  180. <artifactId>easy-captcha</artifactId>
  181. <version>1.6.2</version>
  182. </dependency>
  183. <!-- 解析客户端操作系统、浏览器信息 -->
  184. <dependency>
  185. <groupId>eu.bitwalker</groupId>
  186. <artifactId>UserAgentUtils</artifactId>
  187. <version>1.21</version>
  188. </dependency>
  189. </dependencies>
  190. <build>
  191. <plugins>
  192. <!-- 打包时跳过测试 -->
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-surefire-plugin</artifactId>
  196. <configuration>
  197. <skip>true</skip>
  198. </configuration>
  199. </plugin>
  200. </plugins>
  201. </build>
  202. <repositories>
  203. <repository>
  204. <id>public</id>
  205. <name>aliyun nexus</name>
  206. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  207. <releases>
  208. <enabled>true</enabled>
  209. </releases>
  210. </repository>
  211. </repositories>
  212. <pluginRepositories>
  213. <pluginRepository>
  214. <id>public</id>
  215. <name>aliyun nexus</name>
  216. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  217. <releases>
  218. <enabled>true</enabled>
  219. </releases>
  220. <snapshots>
  221. <enabled>false</enabled>
  222. </snapshots>
  223. </pluginRepository>
  224. </pluginRepositories>
  225. </project>