From dcd2d6602c04e92153a6ea0b8fe2898b28d02bf2 Mon Sep 17 00:00:00 2001 From: Steven Terrana Date: Sat, 3 Apr 2021 17:25:02 -0400 Subject: [PATCH] try to fix JTE javadoc on the plugin site --- build.gradle | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build.gradle b/build.gradle index ae7c245e2..9352c5dd1 100644 --- a/build.gradle +++ b/build.gradle @@ -124,3 +124,13 @@ sourceSets { groovydoc{ source fileTree("src/main/groovy") } + +/** + * this is necessary so that the groovydocs show up as the javadocs + * on the jenkins plugin site + */ +task javadocJar(type: Jar) { + description "An archive of the JavaDocs for Maven Central" + classifier "javadoc" + from groovydoc +} \ No newline at end of file