2025-12-13 23:55:43 +00:00
|
|
|
plugins {
|
|
|
|
|
id 'java'
|
2025-12-16 20:45:24 +00:00
|
|
|
id 'org.springframework.boot' version '3.3.5'
|
2025-12-13 23:55:43 +00:00
|
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
|
|
|
id 'org.graalvm.buildtools.native' version '0.10.6'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
apply from: 'gradle/plugins/dependencies.gradle'
|
|
|
|
|
|
|
|
|
|
group = 'br.com.rayankonecny'
|
|
|
|
|
version = '1.0.0'
|
|
|
|
|
description = 'auth service project for Spring Boot'
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
toolchain {
|
|
|
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
|
compileOnly {
|
|
|
|
|
extendsFrom annotationProcessor
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
|
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
|
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
}
|
2025-12-17 00:51:56 +00:00
|
|
|
|
|
|
|
|
tasks.withType(org.springframework.boot.gradle.tasks.aot.ProcessAot).configureEach {
|
|
|
|
|
enabled = false
|
|
|
|
|
}
|