39 lines
931 B
Groovy
39 lines
931 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id 'org.springframework.boot' version '3.1.5'
|
||
|
id 'io.spring.dependency-management' version '1.1.3'
|
||
|
}
|
||
|
|
||
|
group = 'com.ulstu'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
|
||
|
java {
|
||
|
sourceCompatibility = '17'
|
||
|
}
|
||
|
|
||
|
configurations {
|
||
|
compileOnly {
|
||
|
extendsFrom annotationProcessor
|
||
|
}
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
implementation 'org.springframework.boot:spring-boot-devtools'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.3'
|
||
|
compileOnly 'org.projectlombok:lombok'
|
||
|
runtimeOnly 'org.postgresql:postgresql'
|
||
|
annotationProcessor 'org.projectlombok:lombok'
|
||
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||
|
}
|
||
|
|
||
|
tasks.named('test') {
|
||
|
useJUnitPlatform()
|
||
|
}
|