pom.xml 8.4 KB

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