2025-09-12 14:23:19 -05:00
|
|
|
[[introduction]]
|
|
|
|
|
= Introduction
|
|
|
|
|
|
|
|
|
|
Spring Security Kerberos {spring-security-version} is built and tested with JDK 17,
|
|
|
|
|
Spring Security {spring-security-version} and Spring Framework {spring-core-version}.
|
2026-02-20 15:59:46 +01:00
|
|
|
|
|
|
|
|
The dependency coordinates changed with Spring Security 7:
|
|
|
|
|
|
|
|
|
|
[tabs]
|
|
|
|
|
======
|
|
|
|
|
Maven::
|
|
|
|
|
+
|
|
|
|
|
.pom.xml
|
|
|
|
|
[source,xml,subs="verbatim,attributes"]
|
|
|
|
|
----
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- ... other dependency elements ... -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-kerberos-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-kerberos-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
Gradle::
|
|
|
|
|
+
|
|
|
|
|
.build.gradle
|
|
|
|
|
[source,groovy]
|
|
|
|
|
[subs="verbatim,attributes"]
|
|
|
|
|
----
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation "org.springframework.security:spring-security-kerberos-core"
|
|
|
|
|
implementation "org.springframework.security:spring-security-kerberos-web"
|
|
|
|
|
}
|
|
|
|
|
----
|
|
|
|
|
======
|