demo/app/build.gradle

22 lines
532 B
Groovy

plugins {
id 'org.springframework.boot'
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation("org.springframework.cloud:spring-cloud-starter-openfeign:3.1.3")
implementation("org.mybatis:mybatis-spring:2.0.7")
implementation("cn.xuyanwu:spring-file-storage:0.7.0")
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation project(":recruit-biz")
implementation project(":upms-biz")
}
test {
useJUnitPlatform()
}
bootJar {
enabled = true
}