pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.lij</groupId>
  7. <artifactId>himeeter</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>himeeter-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. <!-- pagehelper 分页插件 -->
  31. <dependency>
  32. <groupId>com.github.pagehelper</groupId>
  33. <artifactId>pagehelper-spring-boot-starter</artifactId>
  34. </dependency>
  35. <!-- 自定义验证注解 -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-validation</artifactId>
  39. </dependency>
  40. <!--常用工具类 -->
  41. <dependency>
  42. <groupId>org.apache.commons</groupId>
  43. <artifactId>commons-lang3</artifactId>
  44. </dependency>
  45. <!-- JSON工具类 -->
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.core</groupId>
  48. <artifactId>jackson-databind</artifactId>
  49. </dependency>
  50. <!-- 阿里JSON解析器 -->
  51. <dependency>
  52. <groupId>com.alibaba.fastjson2</groupId>
  53. <artifactId>fastjson2</artifactId>
  54. </dependency>
  55. <!-- io常用工具类 -->
  56. <dependency>
  57. <groupId>commons-io</groupId>
  58. <artifactId>commons-io</artifactId>
  59. </dependency>
  60. <!-- excel工具 -->
  61. <dependency>
  62. <groupId>org.apache.poi</groupId>
  63. <artifactId>poi-ooxml</artifactId>
  64. </dependency>
  65. <!-- yml解析器 -->
  66. <dependency>
  67. <groupId>org.yaml</groupId>
  68. <artifactId>snakeyaml</artifactId>
  69. </dependency>
  70. <!-- Token生成与解析-->
  71. <dependency>
  72. <groupId>io.jsonwebtoken</groupId>
  73. <artifactId>jjwt</artifactId>
  74. </dependency>
  75. <!-- Jaxb -->
  76. <dependency>
  77. <groupId>javax.xml.bind</groupId>
  78. <artifactId>jaxb-api</artifactId>
  79. </dependency>
  80. <!-- redis 缓存操作 -->
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-data-redis</artifactId>
  84. </dependency>
  85. <!-- pool 对象池 -->
  86. <dependency>
  87. <groupId>org.apache.commons</groupId>
  88. <artifactId>commons-pool2</artifactId>
  89. </dependency>
  90. <!-- 解析客户端操作系统、浏览器等 -->
  91. <dependency>
  92. <groupId>eu.bitwalker</groupId>
  93. <artifactId>UserAgentUtils</artifactId>
  94. </dependency>
  95. <!-- servlet包 -->
  96. <dependency>
  97. <groupId>jakarta.servlet</groupId>
  98. <artifactId>jakarta.servlet-api</artifactId>
  99. </dependency>
  100. </dependencies>
  101. </project>