build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. plugins {
  2. }
  3. // 部署为外部服务器时, 配置为war包
  4. apply plugin: 'war'
  5. dependencies {
  6. implementation project(':eccs-common'),
  7. project(':eccs-framework'),
  8. project(':eccs-generator'),
  9. project(':eccs-quartz'),
  10. project(':eccs-system'),
  11. project(':eccs-biz')
  12. implementation 'org.springframework.boot:spring-boot-devtools'
  13. implementation 'org.springframework:spring-core'
  14. implementation 'org.springframework:spring-web'
  15. implementation 'org.springframework.security:spring-security-web'
  16. implementation 'org.springframework.boot:spring-boot-starter-data-redis'
  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 "mysql:mysql-connector-java:${mysql}"
  21. implementation("io.springfox:springfox-swagger2:${swagger}") {
  22. exclude group: 'io.swagger', module: 'swagger-models'
  23. }
  24. implementation "io.springfox:springfox-swagger-ui:${swagger}"
  25. }
  26. description = 'eccs-admin'