1
0

rename package (+schema etc.) credentials to accounts (#185)

Co-authored-by: Michael Hoennig <michael@hoennig.de>
Reviewed-on: https://dev.hostsharing.net/hostsharing/hs.hsadmin.ng/pulls/185
Reviewed-by: Timotheus Pokorra <timotheus.pokorra@hostsharing.net>
This commit is contained in:
Michael Hoennig
2025-07-10 11:55:53 +02:00
parent 3603ea911e
commit 97017c1b99
40 changed files with 101 additions and 101 deletions

View File

@@ -216,11 +216,11 @@ openapiProcessor {
targetDir(layout.buildDirectory.dir("generated/sources/openapi-javax").get().asFile.path)
}
process("springCredentials") {
process("springAccounts") {
processorName("spring")
processor("io.openapiprocessor:openapi-processor-spring:2022.5")
apiPath(project.file("src/main/resources/api-definition/credentials/api-paths.yaml").path)
prop("mapping", project.file("src/main/resources/api-definition/credentials/api-mappings.yaml").path)
apiPath(project.file("src/main/resources/api-definition/accounts/api-paths.yaml").path)
prop("mapping", project.file("src/main/resources/api-definition/accounts/api-mappings.yaml").path)
prop("showWarnings", true)
prop("openApiNullable", true)
targetDir(layout.buildDirectory.dir("generated/sources/openapi-javax").get().asFile.path)
@@ -245,7 +245,7 @@ val processSpring = tasks.register("processSpring") {
"processSpringHsOffice",
"processSpringHsBooking",
"processSpringHsHosting",
"processSpringCredentials"
"processSpringAccounts"
)
}