66 lines
2.3 KiB
Kotlin
66 lines
2.3 KiB
Kotlin
group = "space.nstart.pcp"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
kotlin("plugin.jpa")
|
|
kotlin("plugin.lombok")
|
|
id("org.springframework.boot")
|
|
id("io.spring.dependency-management")
|
|
id("org.sonarqube")
|
|
jacoco
|
|
}
|
|
|
|
version = "1.0.0"
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs.addAll("-Xjsr305=strict")
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom(configurations.annotationProcessor.get())
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":libs:pcp-types-lib"))
|
|
implementation("${property("dep.spring.actuator")}")
|
|
implementation("org.springframework.boot:spring-boot-starter-logging")
|
|
implementation("org.springframework.boot:spring-boot-starter-validation")
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("jakarta.validation:jakarta.validation-api")
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:${property("versions.open-api")}")
|
|
implementation("org.springframework.cloud:spring-cloud-starter-config")
|
|
implementation("org.springframework.kafka:spring-kafka")
|
|
implementation("org.springframework.boot:spring-boot-starter-flyway")
|
|
implementation("org.flywaydb:flyway-database-postgresql")
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
runtimeOnly("org.postgresql:postgresql")
|
|
|
|
testImplementation("junit:junit")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
testImplementation("org.springframework.security:spring-security-test")
|
|
testImplementation("org.testcontainers:junit-jupiter")
|
|
testRuntimeOnly("com.h2database:h2")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom("org.springframework.cloud:spring-cloud-dependencies:${property("versions.spring.cloud")}")
|
|
mavenBom("org.testcontainers:testcontainers-bom:${property("versions.testcontainers")}")
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
systemProperty("spring.profiles.active", "test")
|
|
}
|