Skip to content

Commit 17b434c

Browse files
busoco-sjbrwinch
authored andcommitted
Document the change in dependency coordinates with Spring Security 7
Signed-off-by: busoco-sjb <169069865+busoco-sjb@users.noreply.github.com>
1 parent 0bb6541 commit 17b434c

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

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)