Skip to content

Commit 89b6d67

Browse files
committed
[Java] Do not apply javadoc-links plugin by default and make links https.
1 parent 7cf127d commit 89b6d67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ buildscript {
2222
plugins {
2323
id 'java'
2424
id 'com.github.johnrengelman.shadow' version '5.0.0' apply false
25-
id "io.freefair.javadoc-links" version "3.1.4"
25+
id "io.freefair.javadoc-links" version "3.1.4" apply false
2626
}
2727

2828
defaultTasks 'clean', 'build', 'shadowJar', 'install'
@@ -163,7 +163,7 @@ subprojects {
163163
javadoc {
164164
title = '<h1>Simple Binary Encoding</h1>'
165165
options.bottom = '<i>Copyright &#169; 2014-2019 Real Logic Ltd. All Rights Reserved.</i>'
166-
options.links('http://docs.oracle.com/javase/8/docs/api/')
166+
options.links('https://docs.oracle.com/javase/8/docs/api/')
167167
if (JavaVersion.current().ordinal() >= JavaVersion.VERSION_1_10.ordinal()) {
168168
options.addBooleanOption 'html5', true
169169
}

0 commit comments

Comments
 (0)