19 lines
408 B
Groovy
19 lines
408 B
Groovy
|
plugins {
|
||
|
id 'java-library'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api project(":common-core")
|
||
|
api("com.baomidou:mybatis-plus-boot-starter:3.5.3.1")
|
||
|
api("com.baomidou:mybatis-plus-extension:3.5.3.1")
|
||
|
api('org.springframework.boot:spring-boot-starter-web')
|
||
|
api("org.springframework.boot:spring-boot-starter-undertow")
|
||
|
api("mysql:mysql-connector-java:8.0.33")
|
||
|
}
|
||
|
bootJar {
|
||
|
enabled = false
|
||
|
}
|
||
|
jar {
|
||
|
enabled = true
|
||
|
}
|