Skip to content

Commit 62f3131

Browse files
committed
Update javadoc to link to Java 17's javadoc
See gh-749
1 parent 4e2e409 commit 62f3131

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build.gradle

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ nohttp {
2828
ext {
2929
springFrameworkVersion = "6.0.0-M2"
3030
javadocLinks = [
31-
"https://docs.oracle.com/javase/8/docs/api/",
3231
"https://docs.spring.io/spring-framework/docs/$springFrameworkVersion/javadoc-api/",
3332
"https://docs.jboss.org/hibernate/validator/7.0/api/",
3433
"https://jakarta.ee/specifications/bean-validation/3.0/apidocs/"
@@ -94,7 +93,7 @@ subprojects { subproject ->
9493
options.links = javadocLinks
9594
options.addStringOption "-quiet"
9695
options.encoding = "UTF-8"
97-
options.source = "1.8"
96+
options.source = "17"
9897
}
9998

10099
java {
@@ -162,7 +161,7 @@ task api (type: Javadoc) {
162161
encoding = "UTF-8"
163162
memberLevel = "protected"
164163
outputLevel = "quiet"
165-
source = "1.8"
164+
source = "17"
166165
splitIndex = true
167166
use = true
168167
windowTitle = "Spring REST Docs ${project.version} API"

0 commit comments

Comments
 (0)