1234567891011121314151617181920212223242526272829303132 |
- plugins {
- }
- dependencies {
- implementation project(':eccs-common'),
- project(':eccs-framework'),
- project(':eccs-quartz'),
- project(':eccs-generator'),
- 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("org.slf4j:slf4j-api:${slf4j}")
- implementation("org.slf4j:slf4j-log4j12:${slf4j}")
- implementation "com.github.penggle:kaptcha:${kaptcha}"
- implementation "org.apache.commons:commons-lang3:${commons_lang3}"
- implementation "commons-io:commons-io:${commons_io}"
- implementation "io.springfox:springfox-swagger2:${swagger}"
- implementation "io.springfox:springfox-swagger-ui:${swagger}"
- implementation "mysql:mysql-connector-java:${mysql}"
- }
- description = 'eccs-admin'
|