1234567891011121314151617181920212223242526272829303132333435 |
- plugins {
- }
- // 部署为外部服务器时, 配置为war包
- apply plugin: 'war'
- dependencies {
- implementation project(':eccs-common'),
- project(':eccs-framework'),
- project(':eccs-generator'),
- project(':eccs-quartz'),
- project(':eccs-system'),
- project(':eccs-biz')
- implementation 'org.springframework.boot:spring-boot-devtools'
- implementation 'org.springframework:spring-core'
- implementation 'org.springframework:spring-web'
- implementation 'org.springframework.security:spring-security-web'
- implementation 'org.springframework.boot:spring-boot-starter-data-redis'
- implementation "com.github.penggle:kaptcha:${kaptcha}"
- implementation "org.apache.commons:commons-lang3:${commons_lang3}"
- implementation "commons-io:commons-io:${commons_io}"
- implementation "mysql:mysql-connector-java:${mysql}"
- implementation("io.springfox:springfox-swagger2:${swagger}") {
- exclude group: 'io.swagger', module: 'swagger-models'
- }
- implementation "io.springfox:springfox-swagger-ui:${swagger}"
- }
- description = 'eccs-admin'
|