added endpoints for seperating and readding system rules working on service RED-9472: seperation of system rules refactored endpoints. now removing system rules on download merging user rules with systemrules on upload RED-9472: seperation of system rules RED-9472: seperation of system rules RED-9472: seperation of system rules refactored two have a rulefileblueprint and a rulefileblueprint for validationresult changed the flow of merging and seperating system and user rules added functions and declarations to rule file parsing RED-9472: seperation of system rules RED-9472: seperation of system rules introduced tests working on fixing bug with merging rules RED-9472: seperation of system rules introduced tests RED-9472: seperation of system rules fixed circular depdency RED-9472: seperation of system rules updated persistence service version RED-9472: seperation of system rules refactored rules refactored pcackages RED-9472: seperation of system rules fixed failing tests RED-9472: seperation of system rules fixed failing tests RED-9472: seperation of system rules fixed some sonarqube errors RED-9472: seperation of system rules fixed pmd error RED-9472: seperation of system rules added deploy stage to gitlab pipeline RED-9472: seperation of system rules RED-9472: seperation of system rules fixed a mistake RED-9472: seperation of system rules updated controller to return RulesUploadResponse including the droolsvalidationresponse RED-9472: seperation of system rules updated controller to return RulesUploadResponse including the droolsvalidationresponse
31 lines
904 B
Plaintext
31 lines
904 B
Plaintext
plugins {
|
|
id("com.iqser.red.service.java-conventions")
|
|
id("io.freefair.lombok") version "8.4"
|
|
}
|
|
|
|
description = "redaction-service-api-v1"
|
|
val persistenceServiceVersion = "2.585.0-RED9472.0"
|
|
|
|
dependencies {
|
|
implementation("org.springframework:spring-web:6.0.12")
|
|
implementation("com.iqser.red.service:persistence-service-internal-api-v1:${persistenceServiceVersion}")
|
|
api("com.knecon.fforesight:swagger-commons:0.7.0")
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|
|
}
|