File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,19 @@ subprojects { project ->
257
257
258
258
}
259
259
260
+ // Configure cross-links from webauthn-server-attestation JavaDoc to core JavaDoc
261
+ project(' :webauthn-server-attestation' ). tasks. javadoc {
262
+ var coreProj = project(' :webauthn-server-core' )
263
+ var coreJavadoc = coreProj. tasks. javadoc
264
+ inputs. files coreJavadoc. outputs. files
265
+
266
+ // These links won't work locally, but they will work on developers.yubico.com
267
+ options. linksOffline(" ../../webauthn-server-core/${ coreProj.version} " , " ${ coreJavadoc.destinationDir} " )
268
+
269
+ // Use this instead for local testing
270
+ // options.linksOffline("file://${coreJavadoc.destinationDir}", "${coreJavadoc.destinationDir}")
271
+ }
272
+
260
273
// The root project has no sources, but the dependency platform also needs to be published as an artifact
261
274
// See https://docs.gradle.org/current/userguide/java_platform_plugin.html
262
275
// See https://github.com/Yubico/java-webauthn-server/issues/93#issuecomment-822806951
You can’t perform that action at this time.
0 commit comments