pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. <parent>
  6. <groupId>com.xyzc</groupId>
  7. <artifactId>xyzc-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xyzc-common-core</artifactId>
  12. <description>
  13. xyzc-common-core 核心模块
  14. </description>
  15. <dependencies>
  16. <!-- 验证码工具类 -->
  17. <dependency>
  18. <groupId>com.github.whvcse</groupId>
  19. <artifactId>easy-captcha</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fasterxml.jackson.core</groupId>
  23. <artifactId>jackson-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.fasterxml.jackson.core</groupId>
  27. <artifactId>jackson-annotations</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fasterxml.jackson.core</groupId>
  31. <artifactId>jackson-databind</artifactId>
  32. </dependency>
  33. <!-- Spring框架基本的核心工具 -->
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-context-support</artifactId>
  37. </dependency>
  38. <!-- SpringWeb模块 -->
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-web</artifactId>
  42. </dependency>
  43. <!-- 自定义验证注解 -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-validation</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-aop</artifactId>
  51. </dependency>
  52. <!--常用工具类 -->
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-lang3</artifactId>
  56. </dependency>
  57. <!-- servlet包 -->
  58. <dependency>
  59. <groupId>jakarta.servlet</groupId>
  60. <artifactId>jakarta.servlet-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.hutool</groupId>
  64. <artifactId>hutool-core</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.hutool</groupId>
  68. <artifactId>hutool-http</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.hutool</groupId>
  72. <artifactId>hutool-extra</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.projectlombok</groupId>
  76. <artifactId>lombok</artifactId>
  77. </dependency>
  78. <!-- 自动生成YML配置关联JSON文件 -->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-configuration-processor</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-properties-migrator</artifactId>
  86. <scope>runtime</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.github.linpeilie</groupId>
  90. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  91. </dependency>
  92. <!-- 离线IP地址定位库 -->
  93. <dependency>
  94. <groupId>org.lionsoul</groupId>
  95. <artifactId>ip2region</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>transmittable-thread-local</artifactId>
  100. </dependency>
  101. <!-- logback核心组件 -->
  102. <dependency>
  103. <groupId>ch.qos.logback</groupId>
  104. <artifactId>logback-core</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework.security</groupId>
  108. <artifactId>spring-security-core</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework</groupId>
  112. <artifactId>spring-webmvc</artifactId>
  113. </dependency>
  114. </dependencies>
  115. </project>