build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. plugins {
  2. }
  3. dependencies {
  4. compile "org.springframework:spring-context-support:${spring}"
  5. // compile 'org.springframework:spring-context-support:5.2.12.RELEASE'
  6. compile "org.springframework:spring-web:${spring}"
  7. compile "org.springframework.boot:spring-boot-starter-security:${spring_boot_starter}"
  8. compile "com.github.pagehelper:pagehelper-spring-boot-starter:${pagehelper_spring_boot_starter}"
  9. compile "javax.validation:validation-api:${javax_validation}"
  10. compile "org.apache.commons:commons-lang3:${commons_lang3}"
  11. compile "com.fasterxml.jackson.core:jackson-databind:${jackson}"
  12. compile "com.alibaba:fastjson:${fastjson}"
  13. compile "commons-io:commons-io:${commons_io}"
  14. compile "commons-fileupload:commons-fileupload:${commons_fileupload}"
  15. compile "org.apache.poi:poi-ooxml:${poi}"
  16. compile "org.yaml:snakeyaml:${yaml}"
  17. compile "io.jsonwebtoken:jjwt:${jsonwebtoken}"
  18. compile "org.springframework.boot:spring-boot-starter-data-redis:${spring_boot_starter}"
  19. compile "org.apache.commons:commons-pool2:${commons_pool2}"
  20. compile "eu.bitwalker:UserAgentUtils:${user_agent_util}"
  21. compile "javax.servlet:javax.servlet-api:${servlet}"
  22. compile "org.projectlombok:lombok:${lombok}"
  23. compile "com.squareup.okhttp3:okhttp:${okhttp}"
  24. compile 'org.apache.httpcomponents:httpclient:4.5.13'
  25. }
  26. description = 'cadmin-common'