fixing auth-build konflikte

This commit is contained in:
2025-10-04 13:28:41 +02:00
parent dabb7bf5e3
commit 1ed5f3bfca
7 changed files with 34 additions and 10 deletions
@@ -3,9 +3,24 @@ package at.mocode.infrastructure.auth
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
/**
* Hauptklasse für den Auth-Server.
*
* Dieser Service fungiert als zentraler Authentifizierungs- und Autorisierungsserver,
* der mit Keycloak kommuniziert und JWT-Token-Management bereitstellt.
*
* Funktionalitäten:
* - JWT Token Generation und Validierung
* - Integration mit Keycloak
* - Benutzer- und Berechtigungsverwaltung
* - REST API für Authentifizierung
*/
@SpringBootApplication
class AuthServerApplication
/**
* Haupteinstiegspunkt für den Auth-Server Service
*/
fun main(args: Array<String>) {
runApplication<AuthServerApplication>(*args)
}
@@ -29,7 +29,7 @@ import java.time.Duration
class KeycloakIntegrationTest {
companion object {
private const val KEYCLOAK_VERSION = "25.0.2"
private const val KEYCLOAK_VERSION = "26.4.0"
private const val KEYCLOAK_PORT = 8080
private const val KEYCLOAK_ADMIN_USER = "admin"
private const val KEYCLOAK_ADMIN_PASSWORD = "admin"