50 lines
1.5 KiB
Groovy
50 lines
1.5 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '3.1.5'
|
|
id 'io.spring.dependency-management' version '1.1.3'
|
|
id 'com.netflix.dgs.codegen' version '6.0.3'
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":client-api")
|
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
|
implementation 'org.springframework.boot:spring-boot-starter-aop'
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
|
|
implementation 'org.springframework.boot:spring-boot-starter-graphql'
|
|
|
|
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'org.springframework.security:spring-security-test'
|
|
testImplementation 'org.mockito:mockito-junit-jupiter:4.2.0'
|
|
}
|
|
|
|
tasks.named('bootBuildImage') {
|
|
builder = 'paketobuildpacks/builder-jammy-base:latest'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.named("bootJar") {
|
|
archiveFileName.set("server.jar")
|
|
}
|
|
|
|
generateJava {
|
|
schemaPaths = ["${projectDir}/src/main/resources/graphql-client"]
|
|
packageName = 'ru.dragonestia.picker.codegen'
|
|
generateClient = true
|
|
}
|