Skip to content

Commit 311235f

Browse files
committed
Document Keberose Dependency Coordinates
Closes gh-18773
2 parents 0bb6541 + fec988c commit 311235f

2 files changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
= Kerberos Migrations
2+
3+
For users leveraging Spring Security's Kerberos support, the Maven and Gradle Coordinates have been changed since the support was moved from an external module into Spring Security.
4+
See the xref:servlet/authentication/kerberos/introduction.adoc[Keberos documentation] for the new Maven and Gradle coordinates.

docs/modules/ROOT/pages/servlet/authentication/kerberos/introduction.adoc

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,38 @@
33

44
Spring Security Kerberos {spring-security-version} is built and tested with JDK 17,
55
Spring Security {spring-security-version} and Spring Framework {spring-core-version}.
6+
7+
The dependency coordinates changed with Spring Security 7:
8+
9+
[tabs]
10+
======
11+
Maven::
12+
+
13+
.pom.xml
14+
[source,xml,subs="verbatim,attributes"]
15+
----
16+
<dependencies>
17+
<!-- ... other dependency elements ... -->
18+
<dependency>
19+
<groupId>org.springframework.security</groupId>
20+
<artifactId>spring-security-kerberos-core</artifactId>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.springframework.security</groupId>
24+
<artifactId>spring-security-kerberos-web</artifactId>
25+
</dependency>
26+
</dependencies>
27+
----
28+
29+
Gradle::
30+
+
31+
.build.gradle
32+
[source,groovy]
33+
[subs="verbatim,attributes"]
34+
----
35+
dependencies {
36+
implementation "org.springframework.security:spring-security-kerberos-core"
37+
implementation "org.springframework.security:spring-security-kerberos-web"
38+
}
39+
----
40+
======

0 commit comments

Comments
 (0)