Skip to content

Commit

Permalink
Add links to other public javadoc pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Dec 28, 2018
1 parent 9233c1e commit a44f020
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,16 @@ allprojects {
}
}

tasks.withType(Javadoc) {
def links = [
'https://docs.oracle.com/javase/8/docs/api/',
'https://grpc.io/grpc-java/javadoc/',
'https://docs.spring.io/spring-framework/docs/5.0.9.RELEASE/javadoc-api/',
'https://docs.spring.io/spring-security/site/docs/5.0.9.RELEASE/api/'
];
options.setLinks(links)
}

// Copy LICENSE
tasks.withType(Jar) {
from(project.rootDir) {
Expand Down

0 comments on commit a44f020

Please sign in to comment.