22 lines
610 B
Groovy
22 lines
610 B
Groovy
|
plugins {
|
||
|
id 'org.springframework.boot'
|
||
|
}
|
||
|
dependencies {
|
||
|
implementation project(":upms-api")
|
||
|
implementation project(":common-config")
|
||
|
implementation("cn.hutool:hutool-crypto")
|
||
|
implementation("cn.hutool:hutool-extra")
|
||
|
implementation("com.anji-plus:spring-boot-starter-captcha:1.3.0")
|
||
|
implementation("com.sun.mail:javax.mail:1.6.2")
|
||
|
implementation("cn.xuyanwu:spring-file-storage:0.7.0")
|
||
|
implementation("net.coobird:thumbnailator:0.4.18")
|
||
|
implementation("io.minio:minio:8.5.1")
|
||
|
implementation("com.aliyun.oss:aliyun-sdk-oss:3.17.1")
|
||
|
}
|
||
|
bootJar {
|
||
|
enabled = false
|
||
|
}
|
||
|
jar {
|
||
|
enabled = true
|
||
|
}
|