fixing(gradle)

This commit is contained in:
2025-08-27 00:30:53 +02:00
parent 8fd09a4aa1
commit 2c2dcd381c
15 changed files with 1125 additions and 37 deletions
+3 -3
View File
@@ -80,15 +80,15 @@ tasks.register("generateOpenApiDocs") {
"openapi": "3.0.3",
"info": {
"title": "${moduleName.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() }} API",
"description": "REST API for $moduleName management",
"description": "REST API für $moduleName Verwaltung",
"version": "1.0.0",
"contact": {
"name": "Meldestelle Development Team"
}
},
"servers": [
{ "url": "http://localhost:8080", "description": "Development server" },
{ "url": "https://api.meldestelle.at", "description": "Production server" }
{ "url": "http://localhost:8080", "description": "Entwicklungs-Server" },
{ "url": "https://api.meldestelle.at", "description": "Produktions-Server" }
],
"paths": {},
"components": {