1
0

pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <artifactId>zhhf</artifactId>
  7. <groupId>com.zhhf</groupId>
  8. <version>4.8.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zhhf-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot Web容器 -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-webmvc</artifactId>
  20. </dependency>
  21. <!-- SpringBoot 拦截器 -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-aspectj</artifactId>
  25. </dependency>
  26. <!-- 阿里数据库连接池 -->
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid-spring-boot-4-starter</artifactId>
  30. </dependency>
  31. <!-- 验证码 -->
  32. <dependency>
  33. <groupId>pro.fessional</groupId>
  34. <artifactId>kaptcha</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <artifactId>servlet-api</artifactId>
  38. <groupId>javax.servlet</groupId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <!-- Shiro使用Spring框架 -->
  43. <dependency>
  44. <groupId>org.apache.shiro</groupId>
  45. <artifactId>shiro-spring</artifactId>
  46. <classifier>jakarta</classifier>
  47. </dependency>
  48. <!-- Shiro核心框架 -->
  49. <dependency>
  50. <groupId>org.apache.shiro</groupId>
  51. <artifactId>shiro-core</artifactId>
  52. <classifier>jakarta</classifier>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.shiro</groupId>
  56. <artifactId>shiro-web</artifactId>
  57. <classifier>jakarta</classifier>
  58. </dependency>
  59. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  60. <dependency>
  61. <groupId>com.github.theborakompanioni</groupId>
  62. <artifactId>thymeleaf-extras-shiro</artifactId>
  63. </dependency>
  64. <!-- 获取系统信息 -->
  65. <dependency>
  66. <groupId>com.github.oshi</groupId>
  67. <artifactId>oshi-core</artifactId>
  68. </dependency>
  69. <!-- 系统模块-->
  70. <dependency>
  71. <groupId>com.zhhf</groupId>
  72. <artifactId>zhhf-system</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.zhhf</groupId>
  76. <artifactId>zhhf-common</artifactId>
  77. </dependency>
  78. </dependencies>
  79. </project>