pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>ruoyi</artifactId>
  6. <groupId>com.ruoyi</groupId>
  7. <version>3.8.1</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ruoyi-common</artifactId>
  11. <description>
  12. common通用工具
  13. </description>
  14. <dependencies>
  15. <!-- Spring框架基本的核心工具 -->
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-context-support</artifactId>
  19. </dependency>
  20. <!-- SpringWeb模块 -->
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-web</artifactId>
  24. </dependency>
  25. <!-- spring security 安全认证 -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-security</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-boot-starter</artifactId>
  33. </dependency>
  34. <!-- pagehelper 分页插件 -->
  35. <dependency>
  36. <groupId>com.github.pagehelper</groupId>
  37. <artifactId>pagehelper-spring-boot-starter</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.mybatis</groupId>
  41. <artifactId>mybatis</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>org.mybatis</groupId>
  45. <artifactId>mybatis-spring</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>com.github.jsqlparser</groupId>
  49. <artifactId>jsqlparser</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <!-- 自定义验证注解 -->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-validation</artifactId>
  57. </dependency>
  58. <!--常用工具类 -->
  59. <dependency>
  60. <groupId>org.apache.commons</groupId>
  61. <artifactId>commons-lang3</artifactId>
  62. </dependency>
  63. <!-- JSON工具类 -->
  64. <dependency>
  65. <groupId>com.fasterxml.jackson.core</groupId>
  66. <artifactId>jackson-databind</artifactId>
  67. </dependency>
  68. <!-- 阿里JSON解析器 -->
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>fastjson</artifactId>
  72. </dependency>
  73. <!-- io常用工具类 -->
  74. <dependency>
  75. <groupId>commons-io</groupId>
  76. <artifactId>commons-io</artifactId>
  77. </dependency>
  78. <!-- 文件上传工具类 -->
  79. <dependency>
  80. <groupId>commons-fileupload</groupId>
  81. <artifactId>commons-fileupload</artifactId>
  82. </dependency>
  83. <!-- excel工具 -->
  84. <dependency>
  85. <groupId>org.apache.poi</groupId>
  86. <artifactId>poi-ooxml</artifactId>
  87. </dependency>
  88. <!-- yml解析器 -->
  89. <dependency>
  90. <groupId>org.yaml</groupId>
  91. <artifactId>snakeyaml</artifactId>
  92. </dependency>
  93. <!-- Token生成与解析-->
  94. <dependency>
  95. <groupId>io.jsonwebtoken</groupId>
  96. <artifactId>jjwt</artifactId>
  97. </dependency>
  98. <!-- Jaxb -->
  99. <dependency>
  100. <groupId>javax.xml.bind</groupId>
  101. <artifactId>jaxb-api</artifactId>
  102. </dependency>
  103. <!-- redis 缓存操作 -->
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-data-redis</artifactId>
  107. </dependency>
  108. <!-- pool 对象池 -->
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-pool2</artifactId>
  112. </dependency>
  113. <!-- 解析客户端操作系统、浏览器等 -->
  114. <dependency>
  115. <groupId>eu.bitwalker</groupId>
  116. <artifactId>UserAgentUtils</artifactId>
  117. </dependency>
  118. <!-- servlet包 -->
  119. <dependency>
  120. <groupId>javax.servlet</groupId>
  121. <artifactId>javax.servlet-api</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.projectlombok</groupId>
  125. <artifactId>lombok</artifactId>
  126. <version>1.18.24</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>cn.hutool</groupId>
  130. <artifactId>hutool-all</artifactId>
  131. <version>5.8.5</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.httpcomponents</groupId>
  135. <artifactId>httpclient</artifactId>
  136. <version>4.5.2</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>joda-time</groupId>
  140. <artifactId>joda-time</artifactId>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.google.guava</groupId>
  144. <artifactId>guava</artifactId>
  145. </dependency>
  146. </dependencies>
  147. </project>