fixing auth-build konflikte
This commit is contained in:
+15
@@ -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)
|
||||
}
|
||||
|
||||
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user