From 872349cef9071658ed7659b069c2fd8a4bc0d921 Mon Sep 17 00:00:00 2001 From: Tomoko Uchida Date: Mon, 18 Apr 2022 11:34:28 +0900 Subject: [PATCH] Add some basic tasks to help/workflow (#811) --- help/workflow.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/help/workflow.txt b/help/workflow.txt index ffb45488ddb..8b35247fcfe 100644 --- a/help/workflow.txt +++ b/help/workflow.txt @@ -25,11 +25,22 @@ Assemble a single module's JAR (here for lucene-core): gradlew -p lucene/core assemble ls lucene/core/build/libs +Assemble all Lucene artifacts (JARs, and so on): +gradlew assemble + Create all distributable packages, POMs, etc. and create a local maven repository for inspection: gradlew mavenLocal ls -R build/maven-local/ +Assemble Javdocs on a module: +gradlew -p lucene/core javadoc +ls lucene/core/build/docs + +Assemble entire documentation (including javadocs): +gradlew documentation +ls lucene/documentation/build/site + Other validation and checks ===========================