Skip to content

Commit

Permalink
Fix JavaDoc links
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Dec 28, 2017
1 parent 3f06fc1 commit 303670b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ subprojects {

if (project != project(':caffeine')) {
javadoc.options.linksOffline(
"http://static.javadoc.io/${group}/caffeine/${version}/",
"https://static.javadoc.io/${group}/caffeine/${version}/",
"${project(':caffeine').buildDir}/docs/javadoc/",
)
javadoc.dependsOn(project(':caffeine').javadoc)
Expand Down
7 changes: 4 additions & 3 deletions gradle/codeQuality.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ tasks.withType(JavaCompile) {
}

javadoc.options.links(
'http://docs.oracle.com/javase/8/docs/api/',
'http://typesafehub.github.com/config/latest/api/',
"http://google.github.io/guava/releases/${versions.guava}/api/docs/")
'https://lightbend.github.io/config/latest/api/',
"https://google.github.io/guava/releases/${versions.guava}/api/docs/",
"https://docs.oracle.com/javase/${JavaVersion.current().majorVersion}/docs/api/",
)

checkstyle {
showViolations = true
Expand Down

0 comments on commit 303670b

Please sign in to comment.