32 lines
904 B
Plaintext
32 lines
904 B
Plaintext
plugins {
|
|
id("com.iqser.red.service.java-conventions")
|
|
id("io.freefair.lombok") version "8.4"
|
|
}
|
|
|
|
description = "redaction-report-service-api-v1"
|
|
|
|
val persistenceServiceVersion = "2.236.0"
|
|
|
|
dependencies {
|
|
implementation("io.github.openfeign:feign-core:12.2")
|
|
implementation("org.springframework:spring-web:6.0.6")
|
|
implementation("com.iqser.red.service:persistence-service-internal-api-v1:${persistenceServiceVersion}")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>(name) {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
repositories {
|
|
maven {
|
|
url = uri("https://nexus.knecon.com/repository/red-platform-releases/")
|
|
credentials {
|
|
username = providers.gradleProperty("mavenUser").getOrNull();
|
|
password = providers.gradleProperty("mavenPassword").getOrNull();
|
|
}
|
|
}
|
|
}
|
|
}
|