pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>4.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot Web容器 -->
  17. <!--忽略内嵌tomcat 使用Undertow -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. <!-- <exclusions>-->
  22. <!-- <exclusion>-->
  23. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  24. <!-- <groupId>org.springframework.boot</groupId>-->
  25. <!-- </exclusion>-->
  26. <!-- </exclusions>-->
  27. </dependency>
  28. <!-- 添加 Undertow依赖 -->
  29. <!-- <dependency>-->
  30. <!-- <groupId>org.springframework.boot</groupId>-->
  31. <!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
  32. <!-- </dependency>-->
  33. <!-- SpringBoot 拦截器 -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-aop</artifactId>
  37. </dependency>
  38. <!--阿里数据库连接池 -->
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>druid-spring-boot-starter</artifactId>
  42. </dependency>
  43. <!-- sharding-jdbc读写分离 -->
  44. <dependency>
  45. <groupId>org.apache.shardingsphere</groupId>
  46. <artifactId>sharding-jdbc-core</artifactId>
  47. <version>4.1.1</version>
  48. </dependency>
  49. <!--验证码 -->
  50. <dependency>
  51. <groupId>com.github.penggle</groupId>
  52. <artifactId>kaptcha</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <artifactId>javax.servlet-api</artifactId>
  56. <groupId>javax.servlet</groupId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <!-- Shiro使用Srping框架 -->
  61. <dependency>
  62. <groupId>org.apache.shiro</groupId>
  63. <artifactId>shiro-spring</artifactId>
  64. </dependency>
  65. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  66. <dependency>
  67. <groupId>com.github.theborakompanioni</groupId>
  68. <artifactId>thymeleaf-extras-shiro</artifactId>
  69. </dependency>
  70. <!-- 解析客户端操作系统、浏览器等 -->
  71. <dependency>
  72. <groupId>eu.bitwalker</groupId>
  73. <artifactId>UserAgentUtils</artifactId>
  74. </dependency>
  75. <!-- 获取系统信息 -->
  76. <dependency>
  77. <groupId>com.github.oshi</groupId>
  78. <artifactId>oshi-core</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>net.java.dev.jna</groupId>
  82. <artifactId>jna</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>net.java.dev.jna</groupId>
  86. <artifactId>jna-platform</artifactId>
  87. </dependency>
  88. <!-- 系统模块-->
  89. <dependency>
  90. <groupId>com.ruoyi</groupId>
  91. <artifactId>ruoyi-system</artifactId>
  92. </dependency>
  93. <!-- JWT -->
  94. <dependency>
  95. <groupId>io.jsonwebtoken</groupId>
  96. <artifactId>jjwt</artifactId>
  97. <version>0.9.1</version>
  98. </dependency>
  99. </dependencies>
  100. </project>