74 lines
2.7 KiB
Plaintext
74 lines
2.7 KiB
Plaintext
import org.springframework.boot.gradle.tasks.bundling.BootBuildImage
|
|
|
|
plugins {
|
|
application
|
|
id("com.iqser.red.service.java-conventions")
|
|
id("org.springframework.boot") version "3.0.4"
|
|
id("io.spring.dependency-management") version "1.1.0"
|
|
id("org.sonarqube") version "4.2.1.3168"
|
|
id("io.freefair.lombok") version "8.1.0"
|
|
}
|
|
|
|
description = "redaction-service-server-v1"
|
|
|
|
val tenantCommonVersion = "0.10.0"
|
|
val springCommonsVersion = "2.1.0"
|
|
val storageCommonsVersion = "2.27.0"
|
|
val poiVersion = "5.2.3"
|
|
val metricCommonsVersion = "2.1.0"
|
|
val persistenceServiceVersion = "2.236.0"
|
|
|
|
configurations {
|
|
all {
|
|
exclude(group = "org.springframework.boot", module = "spring-boot-starter-logging")
|
|
}
|
|
}
|
|
|
|
description = "redaction-report-service-server-v1"
|
|
|
|
dependencies {
|
|
implementation(project(":redaction-report-service-api-v1"))
|
|
implementation("com.knecon.fforesight:tenant-commons:${tenantCommonVersion}")
|
|
implementation("com.iqser.red:platform-commons-dependency:2.7.0")
|
|
|
|
implementation("com.iqser.red.commons:storage-commons:${storageCommonsVersion}")
|
|
implementation("com.iqser.red.commons:spring-commons:${springCommonsVersion}")
|
|
implementation("com.iqser.red.commons:metric-commons:${metricCommonsVersion}")
|
|
implementation("com.iqser.red.service:persistence-service-internal-api-v1:${persistenceServiceVersion}")
|
|
|
|
implementation("org.apache.poi:poi:${poiVersion}")
|
|
implementation("org.apache.poi:poi-ooxml:${poiVersion}")
|
|
implementation("org.apache.poi:poi-scratchpad:${poiVersion}")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-amqp:3.0.4")
|
|
implementation("org.springframework.boot:spring-boot-starter-test:3.0.4") {
|
|
exclude("org.springframework.boot:spring-boot-starter-tomcat:3.0.4")
|
|
}
|
|
implementation("org.springframework.cloud:spring-cloud-starter-openfeign:4.0.1")
|
|
|
|
implementation("org.apache.commons:commons-lang3:3.12.0")
|
|
|
|
testImplementation("com.iqser.red.commons:test-commons:2.1.0")
|
|
testImplementation("org.springframework.amqp:spring-rabbit-test:3.0.6")
|
|
}
|
|
|
|
tasks.named<BootBuildImage>("bootBuildImage") {
|
|
imageName.set("nexus.knecon.com:5001/red/${project.name}:${project.version}")
|
|
if (project.hasProperty("buildbootDockerHostNetwork")) {
|
|
network.set("host")
|
|
}
|
|
docker {
|
|
if (project.hasProperty("buildbootDockerHostNetwork")) {
|
|
bindHostToBuilder.set(true)
|
|
}
|
|
verboseLogging.set(true)
|
|
|
|
publishRegistry {
|
|
username.set(providers.gradleProperty("mavenUser").getOrNull())
|
|
password.set(providers.gradleProperty("mavenPassword").getOrNull())
|
|
email.set(providers.gradleProperty("mavenEmail").getOrNull())
|
|
url.set("https://nexus.knecon.com:5001/")
|
|
}
|
|
}
|
|
}
|