build.gradle 731 B

12345678910111213141516171819202122232425
  1. /*
  2. * This file was generated by the Gradle 'init' task.
  3. *
  4. * This project uses @Incubating APIs which are subject to change.
  5. */
  6. plugins {
  7. id 'com.ruoyi.java-library'
  8. }
  9. dependencies {
  10. // 排除 Tomcat 容器
  11. api('org.springframework.boot:spring-boot-starter-web') {
  12. exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
  13. }
  14. // 添加 Undertow 容器
  15. api 'org.springframework.boot:spring-boot-starter-undertow'
  16. api 'org.springframework.boot:spring-boot-starter-aop'
  17. api 'com.alibaba:druid-spring-boot-starter'
  18. api 'com.github.penggle:kaptcha'
  19. api 'com.github.oshi:oshi-core'
  20. api project(':ruoyi-system')
  21. }
  22. description = 'ruoyi-framework 框架核心'