From 3aab0469ab68e2b611f584db4d9a767634eff344 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Mon, 26 Jun 2023 21:26:42 -0500 Subject: [PATCH] Set the javadoc's title to their project names In this case "DistantHorizons-api" --- build.gradle | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 34f6b7165..ab2b9edec 100644 --- a/build.gradle +++ b/build.gradle @@ -423,12 +423,16 @@ allprojects { p -> apply plugin: "java" apply plugin: "maven-publish" - + archivesBaseName = rootProject.mod_name version = project.name + "-" + rootProject.versionStr group = rootProject.maven_group - - + + // this is the text that appears at the top of the overview (home) page + // and is used when bookmarking a page + javadoc.title = rootProject.mod_name + "-" + project.name + + repositories { // The central repo mavenCentral()