27 lines
660 B
Groovy
27 lines
660 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '2.5.1'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
tasks.bootJar { enabled = false }
|
|
tasks.jar { enabled = true }
|
|
|
|
dependencies {
|
|
implementation project(':domain')
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
}
|
|
|
|
testImplementation 'com.h2database:h2'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |