2024-09-12 22:54:02 +00:00
|
|
|
import com.github.spotbugs.snom.Confidence
|
|
|
|
import com.github.spotbugs.snom.Effort
|
|
|
|
import com.github.spotbugs.snom.SpotBugsTask
|
2024-09-12 22:01:00 +00:00
|
|
|
import org.hidetake.gradle.swagger.generator.GenerateSwaggerCode
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
java
|
2024-09-12 22:23:47 +00:00
|
|
|
checkstyle
|
2024-09-12 22:54:02 +00:00
|
|
|
id("com.github.spotbugs") version "6.0.22"
|
2024-09-12 22:01:00 +00:00
|
|
|
id("org.springframework.boot") version "3.3.3"
|
|
|
|
id("io.spring.dependency-management") version "1.1.6"
|
|
|
|
id("org.hidetake.swagger.generator") version "2.19.2"
|
|
|
|
}
|
|
|
|
|
2024-09-12 22:23:47 +00:00
|
|
|
checkstyle {
|
|
|
|
toolVersion = "10.12.4"
|
|
|
|
configFile = file("src/main/resources/checkstyle.xml")
|
|
|
|
}
|
|
|
|
|
2024-09-12 22:54:02 +00:00
|
|
|
spotbugs {
|
|
|
|
toolVersion = "4.8.6"
|
|
|
|
effort.set(Effort.MAX)
|
|
|
|
reportLevel.set(Confidence.LOW)
|
|
|
|
}
|
|
|
|
|
2024-09-12 22:01:00 +00:00
|
|
|
group = "de.hmmh"
|
|
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-09-12 22:30:08 +00:00
|
|
|
languageVersion = JavaLanguageVersion.of(21)
|
2024-09-12 22:01:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
compileOnly {
|
|
|
|
extendsFrom(configurations.annotationProcessor.get())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
//Spring
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-validation")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
|
|
runtimeOnly("org.postgresql:postgresql")
|
2024-09-12 22:54:02 +00:00
|
|
|
|
2024-09-12 22:01:00 +00:00
|
|
|
//Lombok
|
|
|
|
compileOnly("org.projectlombok:lombok")
|
|
|
|
annotationProcessor("org.projectlombok:lombok")
|
2024-09-12 22:54:02 +00:00
|
|
|
|
2024-09-12 22:01:00 +00:00
|
|
|
//Test
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-testcontainers")
|
|
|
|
testImplementation("org.testcontainers:junit-jupiter")
|
|
|
|
testImplementation("org.testcontainers:postgresql")
|
|
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
|
|
|
|
|
|
//OAS
|
|
|
|
swaggerCodegen("org.openapitools:openapi-generator-cli:7.8.0")
|
|
|
|
implementation("io.swagger.core.v3:swagger-annotations:2.2.22")
|
|
|
|
}
|
|
|
|
|
|
|
|
swaggerSources {
|
|
|
|
register("pmt") {
|
|
|
|
setInputFile(file("${rootDir}/src/main/resources/api.yml"))
|
|
|
|
code.configFile = file("${rootDir}/src/main/resources/gen-config.json")
|
|
|
|
val validationTask = validation
|
|
|
|
code(delegateClosureOf<GenerateSwaggerCode> {
|
|
|
|
language = "spring"
|
|
|
|
components = listOf("models", "apis", "supportingFiles=ApiUtil.java")
|
2024-09-12 22:54:02 +00:00
|
|
|
code.rawOptions =
|
|
|
|
listOf("--ignore-file-override=" + file("${rootDir}/src/main/resources/.codegen-ignore").absolutePath)
|
2024-09-12 22:01:00 +00:00
|
|
|
dependsOn(validationTask)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
2024-09-12 22:54:02 +00:00
|
|
|
|
|
|
|
withType<Checkstyle> {
|
|
|
|
reports {
|
|
|
|
xml.required.set(true)
|
|
|
|
html.required.set(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
withType<SpotBugsTask> {
|
|
|
|
excludeFilter.set(file("${rootDir}/src/main/resources/spotbugs-exclude.xml"))
|
|
|
|
}
|
2024-09-12 22:01:00 +00:00
|
|
|
processResources {
|
|
|
|
dependsOn(generateSwaggerCode)
|
|
|
|
}
|
|
|
|
withType<Test> {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
named("compileJava").configure {
|
|
|
|
dependsOn(swaggerSources.getByName("pmt").code)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java.srcDir("${swaggerSources.getByName("pmt").code.outputDir}/src/main/java")
|
|
|
|
resources.srcDir("${swaggerSources.getByName("pmt").code.outputDir}/src/main/resources")
|
|
|
|
}
|
|
|
|
}
|