build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. plugins {
  2. }
  3. dependencies {
  4. implementation project(':eccs-common'),
  5. project(':eccs-framework'),
  6. project(':eccs-quartz'),
  7. project(':eccs-generator'),
  8. project(':eccs-system'),
  9. project(':eccs-biz')
  10. implementation 'org.springframework.boot:spring-boot-devtools'
  11. implementation 'org.springframework:spring-core'
  12. implementation 'org.springframework:spring-web'
  13. implementation 'org.springframework.security:spring-security-web'
  14. implementation 'org.springframework.boot:spring-boot-starter-data-redis'
  15. implementation("org.slf4j:slf4j-api:${slf4j}")
  16. implementation("org.slf4j:slf4j-log4j12:${slf4j}")
  17. implementation "com.github.penggle:kaptcha:${kaptcha}"
  18. implementation "org.apache.commons:commons-lang3:${commons_lang3}"
  19. implementation "commons-io:commons-io:${commons_io}"
  20. implementation "io.springfox:springfox-swagger2:${swagger}"
  21. implementation "io.springfox:springfox-swagger-ui:${swagger}"
  22. implementation "mysql:mysql-connector-java:${mysql}"
  23. }
  24. description = 'eccs-admin'